From a75e88b4973609bd99d49b8d11cdac67e3f891d2 Mon Sep 17 00:00:00 2001 From: Pranshu Gupta Date: Fri, 19 Apr 2024 19:23:40 +0530 Subject: [PATCH 01/16] Fix userType for `LAST_RESORT_SUPERADMIN_EMAIL` (#2232) * fix userType * . --- src/checks.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/checks.ts b/src/checks.ts index 56e566abd6..6ae11693ab 100644 --- a/src/checks.ts +++ b/src/checks.ts @@ -1,17 +1,16 @@ import { LAST_RESORT_SUPERADMIN_EMAIL } from "./constants"; -import { User } from "./models"; +import { AppUserProfile } from "./models"; import { generateErrorMessage } from "zod-error"; import { getEnvIssues } from "./env"; import { logger } from "./libraries"; import { connect } from "./db"; -// Connect to the database - // Function to log warnings for super admin environment variable const logWarningForSuperAdminEnvVariable = async (): Promise => { + // Connect to the database await connect(); try { - const superAdminExist = await User.exists({ userType: "SUPERADMIN" }); + const superAdminExist = await AppUserProfile.exists({ isSuperAdmin: true }); const isVariablePresentInEnvFile = !!LAST_RESORT_SUPERADMIN_EMAIL; if (superAdminExist && isVariablePresentInEnvFile) { From 24ef15d06daa26e315a60979611e4805235edcaf Mon Sep 17 00:00:00 2001 From: Meetul Rathore Date: Fri, 19 Apr 2024 20:52:07 +0530 Subject: [PATCH 02/16] feat: Recurring events improvements and additions (#2234) * add fields and field resolvers for recurrenceRule * add tests for field resolvers * minor corrections * improve recurring events implementation * modify the code for updating recurring events as per the new implementation * fix tests for deleting recurring events * add more checks and tests * remove dangling recurrence rule and base recurring event documents * remove adminRemoveEvent mutation * minor correction * minor corrections * make the instance an exception on thisInstance updates * create a new series on event instance duration change * minor correction --- locales/en.json | 2 + locales/fr.json | 2 + locales/hi.json | 2 + locales/sp.json | 2 + locales/zh.json | 2 + schema.graphql | 27 +- src/constants.ts | 16 + .../createRecurringEvent.ts | 22 +- ...reateRecurringEventInstancesDuringQuery.ts | 7 +- .../deleteRecurringEvent.ts | 49 +- .../deleteRecurringEventInstances.ts | 52 +- .../deleteEventHelpers/deleteSingleEvent.ts | 9 + .../createRecurrenceRule.ts | 8 +- .../generateRecurrenceRuleString.ts | 20 +- .../generateRecurringEventInstances.ts | 53 +- .../getRecurringInstanceDates.ts | 6 +- .../event/recurringEventHelpers/index.ts | 1 + .../removeDanglingDocuments.ts | 59 ++ .../updateEventHelpers/updateAllInstances.ts | 67 -- .../updateRecurringEvent.ts | 51 +- ...es.ts => updateRecurringEventInstances.ts} | 218 ++-- .../updateEventHelpers/updateSingleEvent.ts | 31 +- .../updateEventHelpers/updateThisInstance.ts | 2 + src/models/RecurrenceRule.ts | 17 +- src/models/index.ts | 1 + src/resolvers/Event/baseRecurringEvent.ts | 10 + src/resolvers/Event/index.ts | 2 + src/resolvers/Mutation/adminRemoveEvent.ts | 165 --- src/resolvers/Mutation/createEvent.ts | 28 +- src/resolvers/Mutation/index.ts | 2 - src/resolvers/Mutation/updateEvent.ts | 2 +- .../RecurrenceRule/baseRecurringEvent.ts | 9 + src/resolvers/RecurrenceRule/index.ts | 8 + src/resolvers/RecurrenceRule/organization.ts | 10 + src/resolvers/index.ts | 2 + src/typeDefs/enums.ts | 6 +- src/typeDefs/inputs.ts | 4 +- src/typeDefs/mutations.ts | 8 +- src/typeDefs/types.ts | 12 +- src/types/generatedGraphQLTypes.ts | 59 +- ...e.test.ts => averageFeedbackScore.spec.ts} | 0 .../Event/baseRecurringEvent.spec.ts | 87 ++ .../{feedback.test.ts => feedback.spec.ts} | 0 tests/resolvers/Event/recurrenceRule.spec.ts | 5 +- .../Mutation/adminRemoveEvent.spec.ts | 258 ----- tests/resolvers/Mutation/createEvent.spec.ts | 281 ++++-- tests/resolvers/Mutation/removeEvent.spec.ts | 385 ++++++- tests/resolvers/Mutation/updateEvent.spec.ts | 940 +++++++++++------- .../eventsByOrganizationConnection.spec.ts | 22 +- .../RecurrenceRule/baseRecurringEvent.spec.ts | 93 ++ .../RecurrenceRule/organization.spec.ts | 84 ++ 51 files changed, 2017 insertions(+), 1191 deletions(-) create mode 100644 src/helpers/event/recurringEventHelpers/removeDanglingDocuments.ts delete mode 100644 src/helpers/event/updateEventHelpers/updateAllInstances.ts rename src/helpers/event/updateEventHelpers/{updateThisAndFollowingInstances.ts => updateRecurringEventInstances.ts} (50%) create mode 100644 src/resolvers/Event/baseRecurringEvent.ts delete mode 100644 src/resolvers/Mutation/adminRemoveEvent.ts create mode 100644 src/resolvers/RecurrenceRule/baseRecurringEvent.ts create mode 100644 src/resolvers/RecurrenceRule/index.ts create mode 100644 src/resolvers/RecurrenceRule/organization.ts rename tests/resolvers/Event/{averageFeedbackScore.test.ts => averageFeedbackScore.spec.ts} (100%) create mode 100644 tests/resolvers/Event/baseRecurringEvent.spec.ts rename tests/resolvers/Event/{feedback.test.ts => feedback.spec.ts} (100%) delete mode 100644 tests/resolvers/Mutation/adminRemoveEvent.spec.ts create mode 100644 tests/resolvers/RecurrenceRule/baseRecurringEvent.spec.ts create mode 100644 tests/resolvers/RecurrenceRule/organization.spec.ts diff --git a/locales/en.json b/locales/en.json index df4bff47d9..1769c40537 100644 --- a/locales/en.json +++ b/locales/en.json @@ -10,6 +10,8 @@ "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", diff --git a/locales/fr.json b/locales/fr.json index cd73a8d4ad..39fea9082c 100644 --- a/locales/fr.json +++ b/locales/fr.json @@ -9,6 +9,8 @@ "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", diff --git a/locales/hi.json b/locales/hi.json index 4cb01568a8..74d3372fb0 100644 --- a/locales/hi.json +++ b/locales/hi.json @@ -10,6 +10,8 @@ "actionItem.notFound": "कार्रवाई का मद नहीं मिला", "advertisement.notFound": "विज्ञापन नहीं मिला", "event.notFound": "घटना नहीं मिली", + "baseRecurringEvent.notFound": "आधार पुनरावृत्ति कार्यक्रम नहीं मिला", + "recurrenceRule.notFound": "पुनरावृत्ति नियम नहीं मिला", "organization.notFound": "संगठन नहीं मिला", "organization.profileImage.notFound": "संगठन की प्रोफ़ाइल छवि नहीं मिली", "organization.member.notFound": "संगठन का उपयोगकर्ता सदस्य नहीं है", diff --git a/locales/sp.json b/locales/sp.json index 024bcb06b4..cec263813a 100644 --- a/locales/sp.json +++ b/locales/sp.json @@ -9,6 +9,8 @@ "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", diff --git a/locales/zh.json b/locales/zh.json index 3b78d85fa3..16453c5236 100644 --- a/locales/zh.json +++ b/locales/zh.json @@ -9,6 +9,8 @@ "actionItemCategory.isDisabled": "操作项类别已禁用", "actionItem.notFound": "找不到操作项", "event.notFound": "未找到事件", + "baseRecurringEvent.notFound": "未找到基本重复事件", + "recurrenceRule.notFound": "未找到重复规则", "organization.notFound": "未找到組織", "organization.profileImage.notFound": "未找到組織檔案圖像", "organization.member.notFound": "組織的用戶不是成員", diff --git a/schema.graphql b/schema.graphql index 73a848680c..b37e98af67 100644 --- a/schema.graphql +++ b/schema.graphql @@ -620,6 +620,7 @@ type Event { attendees: [User] attendeesCheckInStatus: [CheckInStatus!]! averageFeedbackScore: Float + baseRecurringEvent: Event createdAt: DateTime! creator: User description: String! @@ -628,6 +629,7 @@ type Event { feedback: [Feedback!]! images: [String] isPublic: Boolean! + isRecurringEventException: Boolean! isRegisterable: Boolean! latitude: Latitude location: String @@ -664,7 +666,7 @@ input EventAttendeeInput { input EventInput { allDay: Boolean! description: String! - endDate: Date + endDate: Date! endTime: Time images: [String] isPublic: Boolean! @@ -1032,7 +1034,6 @@ type MinimumValueError implements FieldError { } type Mutation { - acceptAdmin(id: ID!): Boolean! acceptMembershipRequest(membershipRequestId: ID!): MembershipRequest! addEventAttendee(data: EventAttendeeInput!): User! addFeedback(data: FeedbackInput!): Feedback! @@ -1044,7 +1045,6 @@ type Mutation { addUserImage(file: String!): User! addUserToGroupChat(chatId: ID!, userId: ID!): GroupChat! addUserToUserFamily(familyId: ID!, userId: ID!): UserFamily! - adminRemoveEvent(eventId: ID!): Event! adminRemoveGroup(groupId: ID!): GroupChat! assignUserTag(input: ToggleUserTagAssignInput!): User blockPluginCreationBySuperadmin(blockUser: Boolean!, userId: ID!): AppUserProfile! @@ -1096,7 +1096,6 @@ type Mutation { refreshToken(refreshToken: String!): ExtendSession! registerEventAttendee(data: EventAttendeeInput!): EventAttendee! registerForEvent(id: ID!): EventAttendee! - rejectAdmin(id: ID!): Boolean! rejectMembershipRequest(membershipRequestId: ID!): MembershipRequest! removeActionItem(id: ID!): ActionItem! removeAdmin(data: UserAndOrganizationInput!): AppUserProfile! @@ -1145,7 +1144,7 @@ type Mutation { 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! + 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! @@ -1472,9 +1471,15 @@ input RecaptchaVerification { } type RecurrenceRule { + baseRecurringEvent: Event count: PositiveInt - frequency: Frequency - interval: PositiveInt + frequency: Frequency! + interval: PositiveInt! + latestInstanceDate: Date + organization: Organization + recurrenceEndDate: Date + recurrenceRuleString: String! + recurrenceStartDate: Date! weekDayOccurenceInMonth: Int weekDays: [WeekDays] } @@ -1483,14 +1488,16 @@ input RecurrenceRuleInput { count: PositiveInt frequency: Frequency interval: PositiveInt + recurrenceEndDate: Date + recurrenceStartDate: Date weekDayOccurenceInMonth: Int weekDays: [WeekDays] } enum RecurringEventMutationType { - AllInstances - ThisAndFollowingInstances - ThisInstance + allInstances + thisAndFollowingInstances + thisInstance } type SocialMediaUrls { diff --git a/src/constants.ts b/src/constants.ts index 7bae275691..3a5860a30d 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -28,6 +28,7 @@ export const ACTION_ITEM_CATEGORY_ALREADY_EXISTS = { MESSAGE: "actionItemCategory.alreadyExists", PARAM: "actionItemCategory", }; + export const ACTION_ITEM_CATEGORY_IS_DISABLED = { DESC: "Action Item Category is disabled", CODE: "actionItemCategory.isDisabled", @@ -42,6 +43,13 @@ export const AGENDA_CATEGORY_NOT_FOUND_ERROR = { PARAM: "agendaCategory", }; +export const BASE_RECURRING_EVENT_NOT_FOUND = { + DESC: "Base Recurring Event not found", + CODE: "baseRecurringEvent.notFound", + MESSAGE: "baseRecurringEvent.notFound", + PARAM: "baseRecurringEvent", +}; + export const CHAT_NOT_FOUND_ERROR = { DESC: "Chat not found", CODE: "chat.notFound", @@ -174,6 +182,14 @@ export const ORGANIZATION_NOT_FOUND_ERROR = { MESSAGE: "organization.notFound", PARAM: "organization", }; + +export const RECURRENCE_RULE_NOT_FOUND = { + DESC: "Recurrence Rule not found", + CODE: "recurrenceRule.notFound", + MESSAGE: "recurrenceRule.notFound", + PARAM: "recurrenceRule", +}; + export const VENUE_NAME_MISSING_ERROR = { DESC: "Venue name not found", CODE: "venueName.notFound", diff --git a/src/helpers/event/createEventHelpers/createRecurringEvent.ts b/src/helpers/event/createEventHelpers/createRecurringEvent.ts index 5f5532cd4c..cdf5038915 100644 --- a/src/helpers/event/createEventHelpers/createRecurringEvent.ts +++ b/src/helpers/event/createEventHelpers/createRecurringEvent.ts @@ -34,19 +34,19 @@ export const createRecurringEvent = async ( let { recurrenceRuleData } = args; if (!recurrenceRuleData) { - // create a default weekly recurrence rule + // create a default recurrence rule -> infinite weekly recurrence recurrenceRuleData = { frequency: "WEEKLY", + recurrenceStartDate: data.startDate, + recurrenceEndDate: null, }; } + const { recurrenceStartDate, recurrenceEndDate } = recurrenceRuleData; + // generate a recurrence rule string which would be used to generate rrule object // and get recurrence dates - const recurrenceRuleString = generateRecurrenceRuleString( - recurrenceRuleData, - data?.startDate, - data?.endDate, - ); + const recurrenceRuleString = generateRecurrenceRuleString(recurrenceRuleData); // create a base recurring event first, based on which all the // recurring instances would be dynamically generated @@ -55,6 +55,8 @@ export const createRecurringEvent = async ( { ...data, recurring: true, + startDate: recurrenceStartDate, + endDate: recurrenceEndDate, isBaseRecurringEvent: true, creatorId, admins: [creatorId], @@ -68,8 +70,8 @@ export const createRecurringEvent = async ( // to be generated in this operation (rest would be generated dynamically during query) const recurringInstanceDates = getRecurringInstanceDates( recurrenceRuleString, - data.startDate, - data.endDate, + recurrenceStartDate, + recurrenceEndDate, ); // get the date for the latest created instance @@ -78,8 +80,8 @@ export const createRecurringEvent = async ( // create a recurrenceRule document that would contain the recurrence pattern const recurrenceRule = await createRecurrenceRule( recurrenceRuleString, - data.startDate, - data.endDate, + recurrenceStartDate, + recurrenceEndDate, organizationId, baseRecurringEvent[0]?._id.toString(), latestInstanceDate, diff --git a/src/helpers/event/createEventHelpers/createRecurringEventInstancesDuringQuery.ts b/src/helpers/event/createEventHelpers/createRecurringEventInstancesDuringQuery.ts index 4c636c90f7..1165f5f99c 100644 --- a/src/helpers/event/createEventHelpers/createRecurringEventInstancesDuringQuery.ts +++ b/src/helpers/event/createEventHelpers/createRecurringEventInstancesDuringQuery.ts @@ -1,7 +1,6 @@ import { addDays, addYears } from "date-fns"; -import { RecurrenceRule } from "../../../models/RecurrenceRule"; import { convertToUTCDate } from "../../../utilities/recurrenceDatesUtil"; -import { Event } from "../../../models"; +import { Event, RecurrenceRule } from "../../../models"; import { generateRecurringEventInstances, getRecurringInstanceDates, @@ -62,9 +61,9 @@ export const createRecurringEventInstancesDuringQuery = async ( // get the properties from recurrenceRule const { _id: recurrenceRuleId, - latestInstanceDate, + recurrenceEndDate, recurrenceRuleString, - endDate: recurrenceEndDate, + latestInstanceDate, count: totalInstancesCount, } = recurrenceRule; diff --git a/src/helpers/event/deleteEventHelpers/deleteRecurringEvent.ts b/src/helpers/event/deleteEventHelpers/deleteRecurringEvent.ts index abee7f679f..9545d64cce 100644 --- a/src/helpers/event/deleteEventHelpers/deleteRecurringEvent.ts +++ b/src/helpers/event/deleteEventHelpers/deleteRecurringEvent.ts @@ -1,9 +1,13 @@ import type mongoose from "mongoose"; import type { InterfaceEvent } from "../../../models"; -import { Event } from "../../../models"; -import { RecurrenceRule } from "../../../models/RecurrenceRule"; +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"; /** * This function deletes thisInstance / allInstances / thisAndFollowingInstances of a recurring event. @@ -21,29 +25,52 @@ export const deleteRecurringEvent = async ( session: mongoose.ClientSession, ): Promise => { // get the recurrenceRule - const recurrenceRule = await RecurrenceRule.find({ + const recurrenceRule = await RecurrenceRule.findOne({ _id: event.recurrenceRuleId, }); + // throws 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, + ); + } + // get the baseRecurringEvent - const baseRecurringEvent = await Event.find({ + const baseRecurringEvent = await Event.findOne({ _id: event.baseRecurringEventId, }); + // throws 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, + ); + } + if ( event.isRecurringEventException || - args.recurringEventDeleteType === "ThisInstance" + args.recurringEventDeleteType === "thisInstance" ) { // if the event is an exception or if it's deleting thisInstance only, // just delete this single instance - await deleteSingleEvent(event._id.toString(), session); - } else if (args.recurringEventDeleteType === "AllInstances") { + await deleteSingleEvent( + event._id.toString(), + session, + recurrenceRule._id.toString(), + baseRecurringEvent._id.toString(), + ); + } else if (args.recurringEventDeleteType === "allInstances") { // delete all the instances // and update the recurrenceRule and baseRecurringEvent accordingly await deleteRecurringEventInstances( null, // because we're going to delete all the instances, which we could get from the recurrence rule - recurrenceRule[0], - baseRecurringEvent[0], + recurrenceRule, + baseRecurringEvent, session, ); } else { @@ -51,8 +78,8 @@ export const deleteRecurringEvent = async ( // and update the recurrenceRule and baseRecurringEvent accordingly await deleteRecurringEventInstances( event, // we'll find all the instances after(and including) this one and delete them - recurrenceRule[0], - baseRecurringEvent[0], + recurrenceRule, + baseRecurringEvent, session, ); } diff --git a/src/helpers/event/deleteEventHelpers/deleteRecurringEventInstances.ts b/src/helpers/event/deleteEventHelpers/deleteRecurringEventInstances.ts index 10ce859925..1928a4b45e 100644 --- a/src/helpers/event/deleteEventHelpers/deleteRecurringEventInstances.ts +++ b/src/helpers/event/deleteEventHelpers/deleteRecurringEventInstances.ts @@ -1,16 +1,16 @@ import type mongoose from "mongoose"; import type { Types } from "mongoose"; -import type { InterfaceEvent } from "../../../models"; +import type { InterfaceEvent, InterfaceRecurrenceRule } from "../../../models"; import { ActionItem, AppUserProfile, Event, EventAttendee, User, + RecurrenceRule, } from "../../../models"; -import type { InterfaceRecurrenceRule } from "../../../models/RecurrenceRule"; -import { RecurrenceRule } from "../../../models/RecurrenceRule"; import { shouldUpdateBaseRecurringEvent } from "../updateEventHelpers"; +import { removeDanglingDocuments } from "../recurringEventHelpers"; /** * This function deletes allInstances / thisAndFollowingInstances of a recurring event. @@ -24,6 +24,7 @@ import { shouldUpdateBaseRecurringEvent } from "../updateEventHelpers"; * 2. remove the associations of the instances. * 3. delete the instances. * 4. update the recurrenceRule and baseRecurringEvent accordingly. + * 5. remove any dangling recurrence rule and base recurring event documents. */ export const deleteRecurringEventInstances = async ( @@ -32,24 +33,34 @@ export const deleteRecurringEventInstances = async ( baseRecurringEvent: InterfaceEvent, session: mongoose.ClientSession, ): Promise => { - // get the query object: - // if we're deleting thisAndFollowingInstance, it would find all the instances after(and including) this one - // if we're deleting allInstances, it would find all the instances - const query: { + // get the query object to filter events to be deleted: + // - if we're deleting thisAndFollowingInstance, it will find all the instances after(and including) this one + // - if we're deleting 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 (event) { - query.startDate = { $gte: event.startDate }; + eventsQueryObject.startDate = { $gte: event.startDate }; } // get all the instances to be deleted - const recurringEventInstances = await Event.find(query); + const recurringEventInstances = await Event.find( + { + ...eventsQueryObject, + }, + null, + { session }, + ); // get the ids of those instances const recurringEventInstancesIds = recurringEventInstances.map( @@ -129,14 +140,14 @@ export const deleteRecurringEventInstances = async ( instancesFollowingCurrentRecurrence[0].startDate; const updatedEndDate = new Date(updatedEndDateString); - // update the latestInstanceDate and endDate of the current recurrenceRule + // update the latestInstanceDate and recurrenceEndDate of the current recurrenceRule await RecurrenceRule.findOneAndUpdate( { _id: recurrenceRule._id, }, { latestInstanceDate: updatedEndDate, - endDate: updatedEndDate, + recurrenceEndDate: updatedEndDate, }, { session }, ).lean(); @@ -144,7 +155,7 @@ export const deleteRecurringEventInstances = async ( // update the baseRecurringEvent if it is the latest recurrence rule that the instances were following if ( shouldUpdateBaseRecurringEvent( - recurrenceRule.endDate?.toString(), + recurrenceRule.recurrenceEndDate?.toString(), baseRecurringEvent.endDate?.toString(), ) ) { @@ -166,12 +177,12 @@ export const deleteRecurringEventInstances = async ( const previousRecurrenceRules = await RecurrenceRule.find( { baseRecurringEventId: baseRecurringEvent._id, - endDate: { $lt: recurrenceRule.startDate }, + recurrenceEndDate: { $lt: recurrenceRule.recurrenceStartDate }, }, null, { session }, ) - .sort({ endDate: -1 }) + .sort({ recurrenceEndDate: -1 }) .lean(); const previousRecurrenceRulesExist = @@ -180,7 +191,7 @@ export const deleteRecurringEventInstances = async ( // update the baseRecurringEvent if it is the latest recurrence rule that the instances were following if ( shouldUpdateBaseRecurringEvent( - recurrenceRule.endDate?.toString(), + recurrenceRule.recurrenceEndDate?.toString(), baseRecurringEvent.endDate?.toString(), ) ) { @@ -188,10 +199,19 @@ export const deleteRecurringEventInstances = async ( { _id: baseRecurringEvent._id, }, - { endDate: previousRecurrenceRules[0].endDate.toISOString() }, + { + 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 index f8348175aa..ee15de8122 100644 --- a/src/helpers/event/deleteEventHelpers/deleteSingleEvent.ts +++ b/src/helpers/event/deleteEventHelpers/deleteSingleEvent.ts @@ -6,6 +6,7 @@ import { EventAttendee, User, } from "../../../models"; +import { removeDanglingDocuments } from "../recurringEventHelpers"; /** * This function deletes a single event. @@ -18,6 +19,8 @@ import { export const deleteSingleEvent = async ( eventId: string, session: mongoose.ClientSession, + recurrenceRule?: string, + baseRecurringEvent?: string, ): Promise => { // remove the associations of the current event await Promise.all([ @@ -62,4 +65,10 @@ export const deleteSingleEvent = async ( }, ), ]); + + if (recurrenceRule && baseRecurringEvent) { + // they would exist while we're deleting a recurring event + // remove any dangling recurrence rule and base recurring event documents + await removeDanglingDocuments(recurrenceRule, baseRecurringEvent, session); + } }; diff --git a/src/helpers/event/recurringEventHelpers/createRecurrenceRule.ts b/src/helpers/event/recurringEventHelpers/createRecurrenceRule.ts index 04b1c2c645..0170071776 100644 --- a/src/helpers/event/recurringEventHelpers/createRecurrenceRule.ts +++ b/src/helpers/event/recurringEventHelpers/createRecurrenceRule.ts @@ -1,7 +1,7 @@ import type mongoose from "mongoose"; import { rrulestr } from "rrule"; -import type { InterfaceRecurrenceRule } from "../../../models/RecurrenceRule"; -import { RecurrenceRule } from "../../../models/RecurrenceRule"; +import type { InterfaceRecurrenceRule } from "../../../models"; +import { RecurrenceRule } from "../../../models"; import { RECURRENCE_FREQUENCIES, RECURRENCE_WEEKDAYS, @@ -56,8 +56,8 @@ export const createRecurrenceRule = async ( organizationId, baseRecurringEventId, recurrenceRuleString, - startDate: recurrenceStartDate, - endDate: recurrenceEndDate, + recurrenceStartDate, + recurrenceEndDate, frequency, weekDays, interval, diff --git a/src/helpers/event/recurringEventHelpers/generateRecurrenceRuleString.ts b/src/helpers/event/recurringEventHelpers/generateRecurrenceRuleString.ts index 9f5c6bf486..fad7ab902e 100644 --- a/src/helpers/event/recurringEventHelpers/generateRecurrenceRuleString.ts +++ b/src/helpers/event/recurringEventHelpers/generateRecurrenceRuleString.ts @@ -15,9 +15,18 @@ import { convertToRRuleDateString } from "../../../utilities/recurrenceDatesUtil export const generateRecurrenceRuleString = ( recurrenceRuleData: RecurrenceRuleInput, - recurrenceStartDate: Date, - recurrenceEndDate?: Date, ): string => { + // destructure the recurrence rules + const { + recurrenceStartDate, + recurrenceEndDate, + frequency, + weekDays, + interval, + count, + weekDayOccurenceInMonth, + } = recurrenceRuleData; + // get the start date string for rrule's "DTSTART" property const recurrenceStartDateString = convertToRRuleDateString(recurrenceStartDate); @@ -28,10 +37,6 @@ export const generateRecurrenceRuleString = ( recurrenceEndDateString = convertToRRuleDateString(recurrenceEndDate); } - // destructure the recurrence rules - const { frequency, weekDays, interval, count, weekDayOccurenceInMonth } = - recurrenceRuleData; - // get weekdays for recurrence rule string, i.e. "MO", "TU", etc. const recurrenceWeekDays = weekDays?.map((weekDay) => { if (weekDay) { @@ -39,6 +44,9 @@ export const generateRecurrenceRuleString = ( } }); + // sort the weekDays array + recurrenceWeekDays?.sort(); + // string representing the days of the week the event would recur const weekDaysString = recurrenceWeekDays?.length ? recurrenceWeekDays.join(",") diff --git a/src/helpers/event/recurringEventHelpers/generateRecurringEventInstances.ts b/src/helpers/event/recurringEventHelpers/generateRecurringEventInstances.ts index b152f70ef5..d2e03b5314 100644 --- a/src/helpers/event/recurringEventHelpers/generateRecurringEventInstances.ts +++ b/src/helpers/event/recurringEventHelpers/generateRecurringEventInstances.ts @@ -3,6 +3,7 @@ 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. @@ -13,10 +14,11 @@ import { cacheEvents } from "../../../services/EventCache/cacheEvents"; * @param creatorId - _id of the creator. * @param organizationId - _id of the current organization. * @remarks The following steps are followed: - * 1. Generate the instances for each provided date. - * 2. Insert the documents in the database. - * 3. Associate the instances with the user. - * 4. Cache the instances. + * 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. */ @@ -50,12 +52,49 @@ export const generateRecurringEventInstances = async ({ 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: date, - endDate: date, + startDate: instanceStartDate, + endDate: instanceEndDate, recurring: true, isBaseRecurringEvent: false, recurrenceRuleId, @@ -69,7 +108,7 @@ export const generateRecurringEventInstances = async ({ recurringInstances.push(createdEventInstance); }); - //Bulk insertion in database + // Bulk insertion in database const recurringEventInstances = await Event.insertMany(recurringInstances, { session, }); diff --git a/src/helpers/event/recurringEventHelpers/getRecurringInstanceDates.ts b/src/helpers/event/recurringEventHelpers/getRecurringInstanceDates.ts index 502a3a5a1a..4c5989e460 100644 --- a/src/helpers/event/recurringEventHelpers/getRecurringInstanceDates.ts +++ b/src/helpers/event/recurringEventHelpers/getRecurringInstanceDates.ts @@ -23,7 +23,7 @@ import { export function getRecurringInstanceDates( recurrenceRuleString: string, recurrenceStartDate: Date, - eventEndDate: Date | null, + recurrenceEndDate: Date | null, queryUptoDate: Date = recurrenceStartDate, ): Date[] { // get the rrule object @@ -58,11 +58,11 @@ export function getRecurringInstanceDates( } // if the event has no endDate - eventEndDate = eventEndDate || limitEndDate; + recurrenceEndDate = recurrenceEndDate || limitEndDate; // the date upto which we would generate the instances in this operation const generateUptoDate = new Date( - Math.min(eventEndDate.getTime(), limitEndDate.getTime()), + Math.min(recurrenceEndDate.getTime(), limitEndDate.getTime()), ); // get the dates of recurrence diff --git a/src/helpers/event/recurringEventHelpers/index.ts b/src/helpers/event/recurringEventHelpers/index.ts index 43e66640d5..7514444f45 100644 --- a/src/helpers/event/recurringEventHelpers/index.ts +++ b/src/helpers/event/recurringEventHelpers/index.ts @@ -2,3 +2,4 @@ export { generateRecurrenceRuleString } from "./generateRecurrenceRuleString"; export { getRecurringInstanceDates } from "./getRecurringInstanceDates"; export { createRecurrenceRule } from "./createRecurrenceRule"; export { generateRecurringEventInstances } from "./generateRecurringEventInstances"; +export { removeDanglingDocuments } from "./removeDanglingDocuments"; diff --git a/src/helpers/event/recurringEventHelpers/removeDanglingDocuments.ts b/src/helpers/event/recurringEventHelpers/removeDanglingDocuments.ts new file mode 100644 index 0000000000..e2c2728d63 --- /dev/null +++ b/src/helpers/event/recurringEventHelpers/removeDanglingDocuments.ts @@ -0,0 +1,59 @@ +import type mongoose from "mongoose"; +import { Event, RecurrenceRule } from "../../../models"; + +/** + * This function removes dangling recurrence rule and base recurring event documents. + * @param baseRecurringEventId - _id of the base recurring event. + * @param recurrenceRuleId - _id of the recurrence rule. + * @remarks The following steps are followed: + * 1. Call the function associated with the document to be removed, i.e. removeRecurrenceRule or removeBaseRecurringEvent. + * 2. Check if the document has any associations, i.e.: + * - for recurrence rule, check if there exist any event that follow this given recurrence rule + * - for base recurring event, check if there exist any event that has this event as its base recurring event + * 3. Remove the documents if no associations are found. + */ + +export const removeDanglingDocuments = async ( + recurrenceRuleId: string, + baseRecurringEventId: string, + session: mongoose.ClientSession, +): Promise => { + await removeRecurrenceRule(recurrenceRuleId, session); + await removeBaseRecurringEvent(baseRecurringEventId, session); +}; + +const removeRecurrenceRule = async ( + recurrenceRuleId: string, + session: mongoose.ClientSession, +): Promise => { + const eventsFollowingRecurrenceRule = await Event.exists({ + recurrenceRuleId, + }); + + if (!eventsFollowingRecurrenceRule) { + await RecurrenceRule.deleteOne( + { + _id: recurrenceRuleId, + }, + { 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/updateAllInstances.ts b/src/helpers/event/updateEventHelpers/updateAllInstances.ts deleted file mode 100644 index 34dd00a468..0000000000 --- a/src/helpers/event/updateEventHelpers/updateAllInstances.ts +++ /dev/null @@ -1,67 +0,0 @@ -import type mongoose from "mongoose"; -import type { InterfaceEvent } from "../../../models"; -import { Event } from "../../../models"; -import type { MutationUpdateEventArgs } from "../../../types/generatedGraphQLTypes"; -import type { InterfaceRecurrenceRule } from "../../../models/RecurrenceRule"; -import { shouldUpdateBaseRecurringEvent } from "./index"; - -/** - * This function updates all instances of the recurring event following the given recurrenceRule. - * @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. get the current event data. - * 2. update the data provided in the input. - * @returns The updated event. - */ - -export const updateAllInstances = async ( - args: MutationUpdateEventArgs, - event: InterfaceEvent, - recurrenceRule: InterfaceRecurrenceRule, - baseRecurringEvent: InterfaceEvent, - session: mongoose.ClientSession, -): Promise => { - if ( - shouldUpdateBaseRecurringEvent( - recurrenceRule?.endDate?.toString(), - baseRecurringEvent?.endDate?.toString(), - ) - ) { - // if this was the latest recurrence rule, then update the baseRecurringEvent - // because new instances following this recurrence rule would be generated based on baseRecurringEvent - await Event.updateOne( - { - _id: baseRecurringEvent._id, - }, - { - ...(args.data as Partial), - }, - { - session, - }, - ); - } - - // update all the instances following this recurrence rule and are not exceptions - await Event.updateMany( - { - recurrenceRuleId: recurrenceRule._id, - isRecurringEventException: false, - }, - { - ...(args.data as Partial), - }, - { - session, - }, - ); - - const updatedEvent = await Event.findOne({ - _id: event._id, - }).lean(); - - return updatedEvent as InterfaceEvent; -}; diff --git a/src/helpers/event/updateEventHelpers/updateRecurringEvent.ts b/src/helpers/event/updateEventHelpers/updateRecurringEvent.ts index 60cebba801..b0fa32e605 100644 --- a/src/helpers/event/updateEventHelpers/updateRecurringEvent.ts +++ b/src/helpers/event/updateEventHelpers/updateRecurringEvent.ts @@ -1,11 +1,14 @@ import type mongoose from "mongoose"; import type { InterfaceEvent } from "../../../models"; -import { Event } from "../../../models"; +import { Event, RecurrenceRule } from "../../../models"; import type { MutationUpdateEventArgs } from "../../../types/generatedGraphQLTypes"; import { updateThisInstance } from "./updateThisInstance"; -import { updateAllInstances } from "./updateAllInstances"; -import { updateThisAndFollowingInstances } from "./updateThisAndFollowingInstances"; -import { RecurrenceRule } from "../../../models/RecurrenceRule"; +import { updateRecurringEventInstances } from "./updateRecurringEventInstances"; +import { errors, requestContext } from "../../../libraries"; +import { + BASE_RECURRING_EVENT_NOT_FOUND, + RECURRENCE_RULE_NOT_FOUND, +} from "../../../constants"; /** * This function updates the recurring event. @@ -26,39 +29,59 @@ export const updateRecurringEvent = async ( let updatedEvent: InterfaceEvent = event; // get the recurrenceRule - const recurrenceRule = await RecurrenceRule.find({ + const recurrenceRule = await RecurrenceRule.findOne({ _id: event.recurrenceRuleId, }); + // throws 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, + ); + } + // get the baseRecurringEvent - const baseRecurringEvent = await Event.find({ + const baseRecurringEvent = await Event.findOne({ _id: event.baseRecurringEventId, }); + // throws 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, + ); + } + if ( (args.data?.isRecurringEventException !== undefined && args.data?.isRecurringEventException !== event.isRecurringEventException) || - args.recurringEventUpdateType === "ThisInstance" + args.recurringEventUpdateType === "thisInstance" ) { // if this is a single update or if the event's exception status has changed updatedEvent = await updateThisInstance(args, event, session); - } else if (args.recurringEventUpdateType === "AllInstances") { + } else if (args.recurringEventUpdateType === "allInstances") { // perform a regular bulk update on all the instances - updatedEvent = await updateAllInstances( + updatedEvent = await updateRecurringEventInstances( args, event, - recurrenceRule[0], - baseRecurringEvent[0], + recurrenceRule, + baseRecurringEvent, + "allInstances", session, ); } else { // update current and following events - updatedEvent = await updateThisAndFollowingInstances( + updatedEvent = await updateRecurringEventInstances( args, event, - recurrenceRule[0], - baseRecurringEvent[0], + recurrenceRule, + baseRecurringEvent, + "thisAndFollowingInstances", session, ); } diff --git a/src/helpers/event/updateEventHelpers/updateThisAndFollowingInstances.ts b/src/helpers/event/updateEventHelpers/updateRecurringEventInstances.ts similarity index 50% rename from src/helpers/event/updateEventHelpers/updateThisAndFollowingInstances.ts rename to src/helpers/event/updateEventHelpers/updateRecurringEventInstances.ts index 02e8e0a5ae..4653ea67b7 100644 --- a/src/helpers/event/updateEventHelpers/updateThisAndFollowingInstances.ts +++ b/src/helpers/event/updateEventHelpers/updateRecurringEventInstances.ts @@ -1,14 +1,25 @@ import type mongoose from "mongoose"; -import type { InterfaceEvent } from "../../../models"; -import { AppUserProfile, Event, EventAttendee, User } from "../../../models"; -import type { MutationUpdateEventArgs } from "../../../types/generatedGraphQLTypes"; -import type { InterfaceRecurrenceRule } from "../../../models/RecurrenceRule"; -import { RecurrenceRule } from "../../../models/RecurrenceRule"; +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"; @@ -19,100 +30,97 @@ import { getEventData, shouldUpdateBaseRecurringEvent } from "./index"; * @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 been changed. - * 2. If the recurrence rule has been changed. - * - 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. - * 3. If the recurrence rule hasn't changed: - * - just perform a bulk regular update. - * 4. Update the base recurring event if required. - * @returns The updated first instance of the recurrence rule. + * 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 updateThisAndFollowingInstances = async ( +export const updateRecurringEventInstances = async ( args: MutationUpdateEventArgs, event: InterfaceEvent, recurrenceRule: InterfaceRecurrenceRule, baseRecurringEvent: InterfaceEvent, + recurringEventUpdateType: RecurringEventMutationType, session: mongoose.ClientSession, ): Promise => { let updatedEvent: InterfaceEvent = event; - // initiate the new recurrence rule string - let newRecurrenceRuleString = recurrenceRule.recurrenceRuleString; - // get the data from the args const { data: updateEventInputData, recurrenceRuleData } = args; - // get the start and end dates for the recurrence - const startDate = updateEventInputData?.startDate || recurrenceRule.startDate; - const endDate = - updateEventInputData?.endDate || updateEventInputData?.endDate === null - ? updateEventInputData.endDate - : recurrenceRule.endDate; + // 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 recurrence rule has changed + // check if the new recurrence rule is different from the current one + let newRecurrenceRuleString = ""; if (recurrenceRuleData) { - newRecurrenceRuleString = generateRecurrenceRuleString( - recurrenceRuleData, - startDate, - endDate ?? undefined, - ); + newRecurrenceRuleString = generateRecurrenceRuleString(recurrenceRuleData); + + hasRecurrenceRuleChanged = + currentRecurrenceRuleString !== newRecurrenceRuleString; } - if (newRecurrenceRuleString !== recurrenceRule.recurrenceRuleString) { - // if the recurrence rule has changed, delete the currenct recurrence series, and generate a new one + // whether instance duration has changed + let hasEventInstanceDurationChanged = false; - // get latest eventData to be used for baseRecurringEvent and recurring instances - const eventData = getEventData(updateEventInputData, event); + if (updateEventInputData.startDate && updateEventInputData.endDate) { + const { startDate: newStartDate, endDate: newEndDate } = + updateEventInputData; + const { startDate: originalStartDate, endDate: originalEndDate } = event; - // get the recurrence startDate - const recurrenceStartDate = new Date(eventData.startDate); + hasEventInstanceDurationChanged = + newStartDate.toString() !== originalStartDate.toString() || + newEndDate.toString() !== originalEndDate?.toString(); + } - // get recurrence dates - const recurringInstanceDates = getRecurringInstanceDates( - newRecurrenceRuleString, - recurrenceStartDate, - endDate, - ); + const shouldCreateNewSeries = + hasRecurrenceRuleChanged || hasEventInstanceDurationChanged; - // get the startDate of the latest instance following the recurrence - const latestInstanceDate = - recurringInstanceDates[recurringInstanceDates.length - 1]; + // 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, + }; - // create the recurrencerule - const newRecurrenceRule = await createRecurrenceRule( - newRecurrenceRuleString, - recurrenceStartDate, - endDate, - eventData.organizationId, - baseRecurringEvent._id.toString(), - latestInstanceDate, - session, - ); + if (recurringEventUpdateType === "thisAndFollowingInstances") { + eventsQueryObject.startDate = { $gte: event.startDate }; + } - // 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, - }); + if (shouldCreateNewSeries) { + // delete the current series, remove their associations, and generate a new one - // remove the events conforming to the current recurrence rule and their associations + // first, remove the events conforming to the current recurrence rule and their associations const recurringEventInstances = await Event.find( { - recurrenceRuleId: event.recurrenceRuleId, - startDate: { $gte: event.startDate }, - isRecurringEventException: false, + ...eventsQueryObject, }, null, { session }, ); + const recurringEventInstancesIds = recurringEventInstances.map( (recurringEventInstance) => recurringEventInstance._id, ); @@ -179,21 +187,69 @@ export const updateThisAndFollowingInstances = async ( }, { latestInstanceDate: updatedLatestRecurringInstanceDate, - endDate: 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 the events following the current event's recurrence rule + // 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( { - recurrenceRuleId: event.recurrenceRuleId, - startDate: { $gte: event.startDate }, - isRecurringEventException: false, + ...eventsQueryObject, }, { - ...(args.data as Partial), + ...updateData, }, { session, @@ -205,10 +261,10 @@ export const updateThisAndFollowingInstances = async ( }).lean()) as InterfaceEvent; } - // update the baseRecurringEvent if it is the latest recurrence rule that the instances are following + // update the baseRecurringEvent if it is the latest recurrence rule that the instances were following if ( shouldUpdateBaseRecurringEvent( - recurrenceRule?.endDate?.toString(), + recurrenceRule?.recurrenceEndDate?.toString(), baseRecurringEvent?.endDate?.toString(), ) ) { @@ -218,6 +274,7 @@ export const updateThisAndFollowingInstances = async ( }, { ...(args.data as Partial), + endDate: recurrenceEndDate, }, { session, @@ -225,5 +282,12 @@ export const updateThisAndFollowingInstances = async ( ); } + // 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 index 10b46ef50c..dd9b5e2a76 100644 --- a/src/helpers/event/updateEventHelpers/updateSingleEvent.ts +++ b/src/helpers/event/updateEventHelpers/updateSingleEvent.ts @@ -32,7 +32,7 @@ export const updateSingleEvent = async ( ): Promise => { let updatedEvent: InterfaceEvent = event; - if (args.data?.recurring) { + if (args.data.recurring) { // get the data from args const { data: updateEventInputData } = args; let { recurrenceRuleData } = args; @@ -44,29 +44,30 @@ export const updateSingleEvent = async ( // create a default weekly recurrence rule recurrenceRuleData = { frequency: "WEEKLY", + recurrenceStartDate: eventData.startDate, + recurrenceEndDate: null, }; } - // get the recurrence startDate, if provided, else, use event startDate - const startDate = new Date(eventData.startDate); - // get the recurrence endDate, if provided or made null (infinitely recurring) - const endDate = eventData.endDate ? new Date(eventData.endDate) : 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, - startDate, - endDate ? endDate : undefined, - ); + const recurrenceRuleString = + generateRecurrenceRuleString(recurrenceRuleData); // create a baseRecurringEvent const baseRecurringEvent = await Event.create( [ { ...eventData, - organization: eventData.organizationId, recurring: true, isBaseRecurringEvent: true, + startDate: recurrenceStartDate, + endDate: recurrenceEndDate, + creatorId: event.creatorId, + admins: [event.creatorId], + organization: eventData.organizationId, }, ], { session }, @@ -75,8 +76,8 @@ export const updateSingleEvent = async ( // get recurrence dates const recurringInstanceDates = getRecurringInstanceDates( recurrenceRuleString, - startDate, - endDate, + recurrenceStartDate, + recurrenceEndDate, ); // get the startDate of the latest instance following the recurrence @@ -86,8 +87,8 @@ export const updateSingleEvent = async ( // create the recurrencerule const recurrenceRule = await createRecurrenceRule( recurrenceRuleString, - startDate, - endDate, + recurrenceStartDate, + recurrenceEndDate, eventData.organizationId, baseRecurringEvent[0]._id.toString(), latestInstanceDate, diff --git a/src/helpers/event/updateEventHelpers/updateThisInstance.ts b/src/helpers/event/updateEventHelpers/updateThisInstance.ts index 49356cfb51..8e0f3c4dd6 100644 --- a/src/helpers/event/updateEventHelpers/updateThisInstance.ts +++ b/src/helpers/event/updateEventHelpers/updateThisInstance.ts @@ -6,6 +6,7 @@ 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: @@ -26,6 +27,7 @@ export const updateThisInstance = async ( _id: args.id, }, { + isRecurringEventException: true, ...(args.data as Partial), }, { diff --git a/src/models/RecurrenceRule.ts b/src/models/RecurrenceRule.ts index 54b1b057c5..b00795cd93 100644 --- a/src/models/RecurrenceRule.ts +++ b/src/models/RecurrenceRule.ts @@ -1,6 +1,7 @@ import type { Types, PopulatedDoc, Document, Model } from "mongoose"; import { Schema, model, models } from "mongoose"; import type { InterfaceEvent } from "./Event"; +import type { InterfaceOrganization } from "./Organization"; /** * This is an interface representing a document for a recurrence rule in the database(MongoDB). @@ -25,11 +26,11 @@ export enum WeekDays { export interface InterfaceRecurrenceRule { _id: Types.ObjectId; - organizationId: Types.ObjectId; + organizationId: PopulatedDoc; baseRecurringEventId: PopulatedDoc; recurrenceRuleString: string; - startDate: Date; - endDate: Date; + recurrenceStartDate: Date; + recurrenceEndDate: Date; frequency: Frequency; weekDays: WeekDays[]; interval: number; @@ -43,14 +44,14 @@ export interface InterfaceRecurrenceRule { * @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 startDate - Start date of the recurrence pattern (not necessarily the startDate of the first recurring instance) - * @param endDate - Start date of the recurrence pattern (not necessarily the startDate of the last recurring instance) + * @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 last recurring instance generated using this recurrence rule + * @param latestInstanceDate - The startDate of the lastest recurring instance generated using this recurrence rule */ const recurrenceRuleSchema = new Schema( @@ -69,11 +70,11 @@ const recurrenceRuleSchema = new Schema( type: String, required: true, }, - startDate: { + recurrenceStartDate: { type: Date, required: true, }, - endDate: { + recurrenceEndDate: { type: Date, required: false, }, diff --git a/src/models/index.ts b/src/models/index.ts index a86f67e1e6..a7d855d9d2 100644 --- a/src/models/index.ts +++ b/src/models/index.ts @@ -34,6 +34,7 @@ export * from "./OrganizationTagUser"; export * from "./Plugin"; export * from "./PluginField"; export * from "./Post"; +export * from "./RecurrenceRule"; export * from "./SampleData"; export * from "./TagUser"; export * from "./Venue"; diff --git a/src/resolvers/Event/baseRecurringEvent.ts b/src/resolvers/Event/baseRecurringEvent.ts new file mode 100644 index 0000000000..35ef6f4688 --- /dev/null +++ b/src/resolvers/Event/baseRecurringEvent.ts @@ -0,0 +1,10 @@ +import type { EventResolvers } from "../../types/generatedGraphQLTypes"; +import { Event } from "../../models"; + +export const baseRecurringEvent: EventResolvers["baseRecurringEvent"] = async ( + parent, +) => { + return await Event.findOne({ + _id: parent.baseRecurringEventId, + }).lean(); +}; diff --git a/src/resolvers/Event/index.ts b/src/resolvers/Event/index.ts index af054e1814..82819d4008 100644 --- a/src/resolvers/Event/index.ts +++ b/src/resolvers/Event/index.ts @@ -7,6 +7,7 @@ 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, @@ -17,4 +18,5 @@ export const Event: EventResolvers = { organization, creator, recurrenceRule, + baseRecurringEvent, }; diff --git a/src/resolvers/Mutation/adminRemoveEvent.ts b/src/resolvers/Mutation/adminRemoveEvent.ts deleted file mode 100644 index c1f0a83675..0000000000 --- a/src/resolvers/Mutation/adminRemoveEvent.ts +++ /dev/null @@ -1,165 +0,0 @@ -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, InterfaceUser } from "../../models"; -import { 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 { deleteEventFromCache } from "../../services/EventCache/deleteEventFromCache"; -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"; -import { adminCheck } from "../../utilities"; -/** - * This function enables an admin to remove a 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 event exists - * 2. If the organization exists - * 3. If the user exists - * 4. If the user is an admin of organization - * @returns Deleted event - */ -export const adminRemoveEvent: MutationResolvers["adminRemoveEvent"] = async ( - _parent, - args, - context, -) => { - let event; - - const eventFoundInCache = await findEventsInCache([args.eventId]); - - event = eventFoundInCache[0]; - - if (event === null) { - event = await Event.findOne({ - _id: args.eventId, - }).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, - ); - } - - let organization; - const organizationFoundInCache = await findOrganizationsInCache([ - event.organization, - ]); - - organization = organizationFoundInCache[0]; - - if (organizationFoundInCache.includes(null)) { - organization = await Organization.findOne({ - _id: event.organization, - }).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, - ); - } - - 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 currentUser is an admin of organization. - await adminCheck(currentUser._id, organization); - - /* - Removes event._id from eventAdmin, createdEvents and registeredEvents lists on - currentUser document. - */ - await User.updateOne( - { - _id: currentUser._id, - }, - { - $pull: { - registeredEvents: event._id, - }, - }, - ); - await AppUserProfile.updateOne( - { - userId: currentUser._id, - }, - { - $pull: { - eventAdmin: event._id, - createdEvents: event._id, - }, - }, - ); - // Deletes the event. - await Event.deleteOne({ - _id: event._id, - }); - - await deleteEventFromCache(event._id); - - // Returns the deleted event. - return event; -}; diff --git a/src/resolvers/Mutation/createEvent.ts b/src/resolvers/Mutation/createEvent.ts index b79c1c180b..8898c0d805 100644 --- a/src/resolvers/Mutation/createEvent.ts +++ b/src/resolvers/Mutation/createEvent.ts @@ -1,7 +1,6 @@ import { Types } from "mongoose"; import { LENGTH_VALIDATION_ERROR, - ORGANIZATION_NOT_AUTHORIZED_ERROR, ORGANIZATION_NOT_FOUND_ERROR, USER_NOT_AUTHORIZED_ERROR, USER_NOT_FOUND_ERROR, @@ -104,30 +103,23 @@ export const createEvent: MutationResolvers["createEvent"] = async ( ); } - const userCreatedOrganization = - currentUserAppProfile.createdOrganizations.some((createdOrganization) => - new Types.ObjectId(createdOrganization?.toString()).equals( - organization._id, - ), - ); + const isUserOrgAdmin = currentUserAppProfile.adminFor.some((org) => + new Types.ObjectId(org?.toString()).equals(organization._id), + ); - const userJoinedOrganization = currentUser.joinedOrganizations.some( + const isUserOrgMember = currentUser.joinedOrganizations.some( (joinedOrganization) => joinedOrganization.equals(organization._id), ); // Checks whether currentUser neither created nor joined the organization. if ( - !( - userCreatedOrganization || - userJoinedOrganization || - currentUserAppProfile.isSuperAdmin - ) + !(isUserOrgAdmin || isUserOrgMember || currentUserAppProfile.isSuperAdmin) ) { throw new errors.UnauthorizedError( - requestContext.translate(ORGANIZATION_NOT_AUTHORIZED_ERROR.MESSAGE), - ORGANIZATION_NOT_AUTHORIZED_ERROR.CODE, - ORGANIZATION_NOT_AUTHORIZED_ERROR.PARAM, + requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), + USER_NOT_AUTHORIZED_ERROR.CODE, + USER_NOT_AUTHORIZED_ERROR.PARAM, ); } @@ -208,9 +200,11 @@ export const createEvent: MutationResolvers["createEvent"] = async ( } /* c8 ignore stop */ + return createdEvent; - } catch (error) { + /* c8 ignore start */ + } catch (error) { if (session) { // abort transaction if something fails await session.abortTransaction(); diff --git a/src/resolvers/Mutation/index.ts b/src/resolvers/Mutation/index.ts index a74e4ea035..5dcab565a5 100644 --- a/src/resolvers/Mutation/index.ts +++ b/src/resolvers/Mutation/index.ts @@ -9,7 +9,6 @@ import { addUserCustomData } from "./addUserCustomData"; import { addUserImage } from "./addUserImage"; import { addUserToGroupChat } from "./addUserToGroupChat"; import { addUserToUserFamily } from "./addUserToUserFamily"; -import { adminRemoveEvent } from "./adminRemoveEvent"; import { adminRemoveGroup } from "./adminRemoveGroup"; import { assignUserTag } from "./assignUserTag"; import { blockPluginCreationBySuperadmin } from "./blockPluginCreationBySuperadmin"; @@ -132,7 +131,6 @@ export const Mutation: MutationResolvers = { addUserCustomData, addUserImage, addUserToGroupChat, - adminRemoveEvent, adminRemoveGroup, addUserToUserFamily, removeUserFamily, diff --git a/src/resolvers/Mutation/updateEvent.ts b/src/resolvers/Mutation/updateEvent.ts index 58ef19bd1b..0f515f88c3 100644 --- a/src/resolvers/Mutation/updateEvent.ts +++ b/src/resolvers/Mutation/updateEvent.ts @@ -192,7 +192,7 @@ export const updateEvent: MutationResolvers["updateEvent"] = async ( } /* c8 ignore stop */ - return updatedEvent as InterfaceEvent; + return updatedEvent; /* c8 ignore start */ } catch (error) { if (session) { diff --git a/src/resolvers/RecurrenceRule/baseRecurringEvent.ts b/src/resolvers/RecurrenceRule/baseRecurringEvent.ts new file mode 100644 index 0000000000..48b90afab1 --- /dev/null +++ b/src/resolvers/RecurrenceRule/baseRecurringEvent.ts @@ -0,0 +1,9 @@ +import type { RecurrenceRuleResolvers } from "../../types/generatedGraphQLTypes"; +import { Event } from "../../models"; + +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 new file mode 100644 index 0000000000..3dd2319117 --- /dev/null +++ b/src/resolvers/RecurrenceRule/index.ts @@ -0,0 +1,8 @@ +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 new file mode 100644 index 0000000000..b17690cb7e --- /dev/null +++ b/src/resolvers/RecurrenceRule/organization.ts @@ -0,0 +1,10 @@ +import type { RecurrenceRuleResolvers } from "../../types/generatedGraphQLTypes"; +import { Organization } from "../../models"; + +export const organization: RecurrenceRuleResolvers["organization"] = async ( + parent, +) => { + return await Organization.findOne({ + _id: parent.organizationId, + }).lean(); +}; diff --git a/src/resolvers/index.ts b/src/resolvers/index.ts index 31edae3659..2e1b3a52c8 100644 --- a/src/resolvers/index.ts +++ b/src/resolvers/index.ts @@ -29,6 +29,7 @@ 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"; @@ -60,6 +61,7 @@ const resolvers: Resolvers = { Mutation, Organization, Post, + RecurrenceRule, Query, Subscription, User, diff --git a/src/typeDefs/enums.ts b/src/typeDefs/enums.ts index efd0a793f7..2e523d98b4 100644 --- a/src/typeDefs/enums.ts +++ b/src/typeDefs/enums.ts @@ -31,9 +31,9 @@ export const enums = gql` } enum RecurringEventMutationType { - AllInstances - ThisInstance - ThisAndFollowingInstances + allInstances + thisInstance + thisAndFollowingInstances } enum Frequency { diff --git a/src/typeDefs/inputs.ts b/src/typeDefs/inputs.ts index 966c154c77..8c58f0a2b7 100644 --- a/src/typeDefs/inputs.ts +++ b/src/typeDefs/inputs.ts @@ -130,7 +130,7 @@ export const inputs = gql` title: String! description: String! startDate: Date! - endDate: Date + endDate: Date! startTime: Time endTime: Time allDay: Boolean! @@ -366,6 +366,8 @@ export const inputs = gql` } input RecurrenceRuleInput { + recurrenceStartDate: Date + recurrenceEndDate: Date frequency: Frequency weekDays: [WeekDays] interval: PositiveInt diff --git a/src/typeDefs/mutations.ts b/src/typeDefs/mutations.ts index 2af4d7b058..ae78d811df 100644 --- a/src/typeDefs/mutations.ts +++ b/src/typeDefs/mutations.ts @@ -5,8 +5,6 @@ import { gql } from "graphql-tag"; // Place fields alphabetically to ensure easier lookup and navigation. export const mutations = gql` type Mutation { - acceptAdmin(id: ID!): Boolean! @auth @role(requires: SUPERADMIN) - acceptMembershipRequest(membershipRequestId: ID!): MembershipRequest! @auth addOrganizationCustomField( @@ -45,8 +43,6 @@ export const mutations = gql` createUserFamily(data: createUserFamilyInput!): UserFamily! @auth - adminRemoveEvent(eventId: ID!): Event! @auth - adminRemoveGroup(groupId: ID!): GroupChat! @auth assignUserTag(input: ToggleUserTagAssignInput!): User @auth @@ -180,8 +176,6 @@ export const mutations = gql` registerForEvent(id: ID!): EventAttendee! @auth - rejectAdmin(id: ID!): Boolean! @auth @role(requires: SUPERADMIN) - registerEventAttendee(data: EventAttendeeInput!): EventAttendee! rejectMembershipRequest(membershipRequestId: ID!): MembershipRequest! @auth @@ -302,7 +296,7 @@ export const mutations = gql` updateEvent( id: ID! - data: UpdateEventInput + data: UpdateEventInput! recurrenceRuleData: RecurrenceRuleInput recurringEventUpdateType: RecurringEventMutationType ): Event! @auth diff --git a/src/typeDefs/types.ts b/src/typeDefs/types.ts index 6233ccb453..1738d67644 100644 --- a/src/typeDefs/types.ts +++ b/src/typeDefs/types.ts @@ -258,6 +258,8 @@ export const types = gql` allDay: Boolean! recurring: Boolean! recurrenceRule: RecurrenceRule + baseRecurringEvent: Event + isRecurringEventException: Boolean! isPublic: Boolean! isRegisterable: Boolean! location: String @@ -562,11 +564,17 @@ export const types = gql` } type RecurrenceRule { - frequency: Frequency + organization: Organization + baseRecurringEvent: Event + recurrenceStartDate: Date! + recurrenceEndDate: Date + recurrenceRuleString: String! + frequency: Frequency! weekDays: [WeekDays] - interval: PositiveInt + interval: PositiveInt! count: PositiveInt weekDayOccurenceInMonth: Int + latestInstanceDate: Date } type SocialMediaUrls { diff --git a/src/types/generatedGraphQLTypes.ts b/src/types/generatedGraphQLTypes.ts index 30bd3ed1a7..ac5039ff85 100644 --- a/src/types/generatedGraphQLTypes.ts +++ b/src/types/generatedGraphQLTypes.ts @@ -696,6 +696,7 @@ export type Event = { attendees?: Maybe>>; attendeesCheckInStatus: Array; averageFeedbackScore?: Maybe; + baseRecurringEvent?: Maybe; createdAt: Scalars['DateTime']['output']; creator?: Maybe; description: Scalars['String']['output']; @@ -704,6 +705,7 @@ export type Event = { feedback: Array; images?: Maybe>>; isPublic: Scalars['Boolean']['output']; + isRecurringEventException: Scalars['Boolean']['output']; isRegisterable: Scalars['Boolean']['output']; latitude?: Maybe; location?: Maybe; @@ -746,7 +748,7 @@ export type EventAttendeeInput = { export type EventInput = { allDay: Scalars['Boolean']['input']; description: Scalars['String']['input']; - endDate?: InputMaybe; + endDate: Scalars['Date']['input']; endTime?: InputMaybe; images?: InputMaybe>>; isPublic: Scalars['Boolean']['input']; @@ -1124,7 +1126,6 @@ export type MinimumValueError = FieldError & { export type Mutation = { __typename?: 'Mutation'; - acceptAdmin: Scalars['Boolean']['output']; acceptMembershipRequest: MembershipRequest; addEventAttendee: User; addFeedback: Feedback; @@ -1136,7 +1137,6 @@ export type Mutation = { addUserImage: User; addUserToGroupChat: GroupChat; addUserToUserFamily: UserFamily; - adminRemoveEvent: Event; adminRemoveGroup: GroupChat; assignUserTag?: Maybe; blockPluginCreationBySuperadmin: AppUserProfile; @@ -1188,7 +1188,6 @@ export type Mutation = { refreshToken: ExtendSession; registerEventAttendee: EventAttendee; registerForEvent: EventAttendee; - rejectAdmin: Scalars['Boolean']['output']; rejectMembershipRequest: MembershipRequest; removeActionItem: ActionItem; removeAdmin: AppUserProfile; @@ -1254,11 +1253,6 @@ export type Mutation = { }; -export type MutationAcceptAdminArgs = { - id: Scalars['ID']['input']; -}; - - export type MutationAcceptMembershipRequestArgs = { membershipRequestId: Scalars['ID']['input']; }; @@ -1322,11 +1316,6 @@ export type MutationAddUserToUserFamilyArgs = { }; -export type MutationAdminRemoveEventArgs = { - eventId: Scalars['ID']['input']; -}; - - export type MutationAdminRemoveGroupArgs = { groupId: Scalars['ID']['input']; }; @@ -1588,11 +1577,6 @@ export type MutationRegisterForEventArgs = { }; -export type MutationRejectAdminArgs = { - id: Scalars['ID']['input']; -}; - - export type MutationRejectMembershipRequestArgs = { membershipRequestId: Scalars['ID']['input']; }; @@ -1829,7 +1813,7 @@ export type MutationUpdateCommunityArgs = { export type MutationUpdateEventArgs = { - data?: InputMaybe; + data: UpdateEventInput; id: Scalars['ID']['input']; recurrenceRuleData?: InputMaybe; recurringEventUpdateType?: InputMaybe; @@ -2517,9 +2501,15 @@ export type RecaptchaVerification = { export type RecurrenceRule = { __typename?: 'RecurrenceRule'; + baseRecurringEvent?: Maybe; count?: Maybe; - frequency?: Maybe; - interval?: 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>>; }; @@ -2528,14 +2518,16 @@ export type RecurrenceRuleInput = { count?: InputMaybe; frequency?: InputMaybe; interval?: InputMaybe; + recurrenceEndDate?: InputMaybe; + recurrenceStartDate?: InputMaybe; weekDayOccurenceInMonth?: InputMaybe; weekDays?: InputMaybe>>; }; export type RecurringEventMutationType = - | 'AllInstances' - | 'ThisAndFollowingInstances' - | 'ThisInstance'; + | 'allInstances' + | 'thisAndFollowingInstances' + | 'thisInstance'; export type SocialMediaUrls = { __typename?: 'SocialMediaUrls'; @@ -3863,6 +3855,7 @@ export type EventResolvers>>, ParentType, ContextType>; attendeesCheckInStatus?: Resolver, ParentType, ContextType>; averageFeedbackScore?: Resolver, ParentType, ContextType>; + baseRecurringEvent?: Resolver, ParentType, ContextType>; createdAt?: Resolver; creator?: Resolver, ParentType, ContextType>; description?: Resolver; @@ -3871,6 +3864,7 @@ export type EventResolvers, ParentType, ContextType>; images?: Resolver>>, ParentType, ContextType>; isPublic?: Resolver; + isRecurringEventException?: Resolver; isRegisterable?: Resolver; latitude?: Resolver, ParentType, ContextType>; location?: Resolver, ParentType, ContextType>; @@ -4118,7 +4112,6 @@ export type MinimumValueErrorResolvers = { - acceptAdmin?: Resolver>; acceptMembershipRequest?: Resolver>; addEventAttendee?: Resolver>; addFeedback?: Resolver>; @@ -4130,7 +4123,6 @@ export type MutationResolvers>; addUserToGroupChat?: Resolver>; addUserToUserFamily?: Resolver>; - adminRemoveEvent?: Resolver>; adminRemoveGroup?: Resolver>; assignUserTag?: Resolver, ParentType, ContextType, RequireFields>; blockPluginCreationBySuperadmin?: Resolver>; @@ -4182,7 +4174,6 @@ export type MutationResolvers>; registerEventAttendee?: Resolver>; registerForEvent?: Resolver>; - rejectAdmin?: Resolver>; rejectMembershipRequest?: Resolver>; removeActionItem?: Resolver>; removeAdmin?: Resolver>; @@ -4231,7 +4222,7 @@ export type MutationResolvers, ParentType, ContextType, RequireFields>; updateAgendaSection?: Resolver, ParentType, ContextType, RequireFields>; updateCommunity?: Resolver>; - updateEvent?: Resolver>; + updateEvent?: Resolver>; updateEventVolunteer?: Resolver>; updateEventVolunteerGroup?: Resolver>; updateFund?: Resolver>; @@ -4434,9 +4425,15 @@ export type QueryResolvers = { + baseRecurringEvent?: Resolver, ParentType, ContextType>; count?: Resolver, ParentType, ContextType>; - frequency?: Resolver, ParentType, ContextType>; - interval?: 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; diff --git a/tests/resolvers/Event/averageFeedbackScore.test.ts b/tests/resolvers/Event/averageFeedbackScore.spec.ts similarity index 100% rename from tests/resolvers/Event/averageFeedbackScore.test.ts rename to tests/resolvers/Event/averageFeedbackScore.spec.ts diff --git a/tests/resolvers/Event/baseRecurringEvent.spec.ts b/tests/resolvers/Event/baseRecurringEvent.spec.ts new file mode 100644 index 0000000000..5951f3f90e --- /dev/null +++ b/tests/resolvers/Event/baseRecurringEvent.spec.ts @@ -0,0 +1,87 @@ +import "dotenv/config"; +import { baseRecurringEvent as baseRecurringEventResolver } from "../../../src/resolvers/Event/baseRecurringEvent"; +import { + connect, + disconnect, + dropAllCollectionsFromDatabase, +} from "../../helpers/db"; +import type mongoose from "mongoose"; +import { beforeAll, afterAll, describe, it, expect } from "vitest"; +import { Event, type InterfaceEvent } from "../../../src/models"; +import { createTestUserAndOrganization } from "../../helpers/userAndOrg"; +import type { + TestOrganizationType, + TestUserType, +} from "../../helpers/userAndOrg"; + +import { convertToUTCDate } from "../../../src/utilities/recurrenceDatesUtil"; +import type { MutationCreateEventArgs } from "../../../src/types/generatedGraphQLTypes"; + +let MONGOOSE_INSTANCE: typeof mongoose; +let testOrganization: TestOrganizationType; +let testUser: TestUserType; + +beforeAll(async () => { + MONGOOSE_INSTANCE = await connect(); + await dropAllCollectionsFromDatabase(MONGOOSE_INSTANCE); + + [testUser, testOrganization] = await createTestUserAndOrganization(); +}); + +afterAll(async () => { + await dropAllCollectionsFromDatabase(MONGOOSE_INSTANCE); + await disconnect(MONGOOSE_INSTANCE); +}); + +describe("resolvers -> Event -> baseRecurringEvent", () => { + it(`returns the base recurring event object for parent event`, async () => { + let startDate = new Date(); + startDate = convertToUTCDate(startDate); + const endDate = startDate; + + const args: MutationCreateEventArgs = { + data: { + organizationId: testOrganization?.id, + allDay: true, + description: "newDescription", + isPublic: false, + isRegisterable: false, + latitude: 1, + longitude: 1, + location: "newLocation", + recurring: true, + startDate, + endDate, + title: "newTitle", + }, + recurrenceRuleData: { + recurrenceStartDate: startDate, + frequency: "WEEKLY", + weekDays: ["MONDAY", "TUESDAY", "WEDNESDAY"], + count: 10, + }, + }; + + const context = { + userId: testUser?.id, + }; + const { createEvent: createEventResolver } = await import( + "../../../src/resolvers/Mutation/createEvent" + ); + + const createEventPayload = await createEventResolver?.({}, args, context); + + const baseRecurringEvent = await Event.findOne({ + _id: createEventPayload?.baseRecurringEventId, + }).lean(); + + const parent = createEventPayload as InterfaceEvent; + const baseRecurringEventPayload = await baseRecurringEventResolver?.( + parent, + {}, + {}, + ); + + expect(baseRecurringEvent).toEqual(baseRecurringEventPayload); + }); +}); diff --git a/tests/resolvers/Event/feedback.test.ts b/tests/resolvers/Event/feedback.spec.ts similarity index 100% rename from tests/resolvers/Event/feedback.test.ts rename to tests/resolvers/Event/feedback.spec.ts diff --git a/tests/resolvers/Event/recurrenceRule.spec.ts b/tests/resolvers/Event/recurrenceRule.spec.ts index 3801b53f90..f9602f1e55 100644 --- a/tests/resolvers/Event/recurrenceRule.spec.ts +++ b/tests/resolvers/Event/recurrenceRule.spec.ts @@ -7,6 +7,7 @@ import { } from "../../helpers/db"; import type mongoose from "mongoose"; import { beforeAll, afterAll, describe, it, expect } from "vitest"; +import { RecurrenceRule } from "../../../src/models"; import type { InterfaceEvent } from "../../../src/models"; import { createTestUserAndOrganization } from "../../helpers/userAndOrg"; import type { @@ -16,7 +17,6 @@ import type { import { convertToUTCDate } from "../../../src/utilities/recurrenceDatesUtil"; import type { MutationCreateEventArgs } from "../../../src/types/generatedGraphQLTypes"; -import { RecurrenceRule } from "../../../src/models/RecurrenceRule"; let MONGOOSE_INSTANCE: typeof mongoose; let testOrganization: TestOrganizationType; @@ -38,6 +38,7 @@ describe("resolvers -> Event -> recurrenceRule", () => { it(`returns the recurrence rule object for parent event`, async () => { let startDate = new Date(); startDate = convertToUTCDate(startDate); + const endDate = startDate; const args: MutationCreateEventArgs = { data: { @@ -51,9 +52,11 @@ describe("resolvers -> Event -> recurrenceRule", () => { location: "newLocation", recurring: true, startDate, + endDate, title: "newTitle", }, recurrenceRuleData: { + recurrenceStartDate: startDate, frequency: "WEEKLY", weekDays: ["MONDAY", "TUESDAY", "WEDNESDAY"], count: 10, diff --git a/tests/resolvers/Mutation/adminRemoveEvent.spec.ts b/tests/resolvers/Mutation/adminRemoveEvent.spec.ts deleted file mode 100644 index 52b3d8530a..0000000000 --- a/tests/resolvers/Mutation/adminRemoveEvent.spec.ts +++ /dev/null @@ -1,258 +0,0 @@ -import "dotenv/config"; -import type mongoose from "mongoose"; -import { Types } from "mongoose"; -import { AppUserProfile, Event, Organization, User } from "../../../src/models"; -import type { MutationAdminRemoveEventArgs } from "../../../src/types/generatedGraphQLTypes"; -import { connect, disconnect } from "../../helpers/db"; - -import { nanoid } from "nanoid"; -import { afterAll, beforeAll, describe, expect, it, vi } from "vitest"; -import { - EVENT_NOT_FOUND_ERROR, - ORGANIZATION_NOT_FOUND_ERROR, - USER_NOT_AUTHORIZED_ADMIN, - USER_NOT_AUTHORIZED_ERROR, - USER_NOT_FOUND_ERROR, -} from "../../../src/constants"; -import { adminRemoveEvent as adminRemoveEventResolver } from "../../../src/resolvers/Mutation/adminRemoveEvent"; -import { cacheEvents } from "../../../src/services/EventCache/cacheEvents"; -import { cacheOrganizations } from "../../../src/services/OrganizationCache/cacheOrganizations"; -import type { TestEventType } from "../../helpers/events"; -import { createTestEvent } from "../../helpers/events"; -import type { - TestOrganizationType, - TestUserType, -} from "../../helpers/userAndOrg"; - -let testUser: TestUserType; -let testOrganization: TestOrganizationType; -let testEvent: TestEventType; -let MONGOOSE_INSTANCE: typeof mongoose; - -beforeAll(async () => { - MONGOOSE_INSTANCE = await connect(); - const resultsArray = await createTestEvent(); - - testUser = resultsArray[0]; - testOrganization = resultsArray[1]; - testEvent = resultsArray[2]; - const { requestContext } = await import("../../../src/libraries"); - vi.spyOn(requestContext, "translate").mockImplementation( - (message) => message, - ); -}); - -afterAll(async () => { - await disconnect(MONGOOSE_INSTANCE); -}); - -describe("resolvers -> Mutation -> adminRemoveEvent", () => { - it(`throws NotFoundError if no event exists with _id === args.id`, async () => { - const { requestContext } = await import("../../../src/libraries"); - vi.spyOn(requestContext, "translate").mockImplementation( - (message) => message, - ); - try { - const args: MutationAdminRemoveEventArgs = { - eventId: new Types.ObjectId().toString(), - }; - - const context = { - userId: testUser?.id, - }; - - await adminRemoveEventResolver?.({}, args, context); - } catch (error: unknown) { - expect((error as Error).message).toEqual(EVENT_NOT_FOUND_ERROR.MESSAGE); - } - }); - - it(`throws NotFoundError if no organization exists with _id === event.organization - for event with _id === args.eventId`, async () => { - try { - await Event.findOneAndUpdate( - { - _id: testEvent?._id, - }, - { - $set: { - organization: new Types.ObjectId().toString(), - }, - }, - { - new: true, - }, - ); - - const args: MutationAdminRemoveEventArgs = { - eventId: testEvent?.id, - }; - - const context = { - userId: new Types.ObjectId().toString(), - }; - - await adminRemoveEventResolver?.({}, args, context); - } catch (error: unknown) { - expect((error as Error).message).toEqual( - ORGANIZATION_NOT_FOUND_ERROR.MESSAGE, - ); - } - }); - - it(`throws NotFoundError if no user exists with _id === context.userId`, async () => { - try { - const updatedEvent = await Event.findOneAndUpdate( - { - _id: testEvent?._id, - }, - { - $set: { - organization: testOrganization?._id, - }, - }, - { - new: true, - }, - ); - - if (updatedEvent !== null) { - await cacheEvents([updatedEvent]); - } - const args: MutationAdminRemoveEventArgs = { - eventId: testEvent?.id, - }; - - const context = { - userId: new Types.ObjectId().toString(), - }; - - await adminRemoveEventResolver?.({}, args, context); - } catch (error: unknown) { - expect((error as Error).message).toEqual(USER_NOT_FOUND_ERROR.MESSAGE); - } - }); - - it(`throws UnauthorizedError if user with _id === context.userId is not an admin - of organization with _id === event.organization for event with _id === args.eventId`, async () => { - try { - const updatedOrganization = await Organization.findOneAndUpdate( - { - _id: testOrganization?._id, - }, - { - $set: { - admins: [], - }, - }, - { - new: true, - }, - ); - - if (updatedOrganization !== null) { - await cacheOrganizations([updatedOrganization]); - } - - const args: MutationAdminRemoveEventArgs = { - eventId: testEvent?.id, - }; - - const context = { - userId: testUser?.id, - }; - - await adminRemoveEventResolver?.({}, args, context); - } catch (error: unknown) { - expect((error as Error).message).toEqual( - USER_NOT_AUTHORIZED_ADMIN.MESSAGE, - ); - } - }); - it("throws an error if the user does not have appUserProfile", async () => { - try { - const args: MutationAdminRemoveEventArgs = { - eventId: testEvent?.id, - }; - - const newUser = await User.create({ - email: `email${nanoid().toLowerCase()}@gmail.com`, - password: `pass${nanoid().toLowerCase()}`, - firstName: `firstName${nanoid().toLowerCase()}`, - lastName: `lastName${nanoid().toLowerCase()}`, - image: null, - }); - - const context = { - userId: newUser.id, - }; - - await adminRemoveEventResolver?.({}, args, context); - } catch (error: unknown) { - expect((error as Error).message).toEqual( - USER_NOT_AUTHORIZED_ERROR.MESSAGE, - ); - } - }); - it(`removes event with _id === args.eventId and returns it`, async () => { - const updatedOrganization = await Organization.findOneAndUpdate( - { - _id: testOrganization?._id, - }, - { - $push: { - admins: testUser?._id, - }, - }, - { - new: true, - }, - ); - - if (updatedOrganization !== null) { - await cacheOrganizations([updatedOrganization]); - } - - const args: MutationAdminRemoveEventArgs = { - eventId: testEvent?.id, - }; - - const context = { - userId: testUser?.id, - }; - - const adminRemoveEventPayload = await adminRemoveEventResolver?.( - {}, - args, - context, - ); - - expect(adminRemoveEventPayload).toEqual({ - ...testEvent?.toObject(), - updatedAt: expect.anything(), - }); - - const testUpdatedUser = await User.findOne({ - _id: testUser?._id, - }) - .select(["registeredEvents"]) - .lean(); - - const testUpdatedAppUser = await AppUserProfile.findOne({ - userId: testUser?._id, - }) - .select(["createdEvents", "eventAdmin"]) - .lean(); - expect(testUpdatedUser).toEqual( - expect.objectContaining({ - registeredEvents: expect.arrayContaining([]), - }), - ); - expect(testUpdatedAppUser).toEqual( - expect.objectContaining({ - createdEvents: expect.arrayContaining([]), - eventAdmin: expect.arrayContaining([]), - }), - ); - }); -}); diff --git a/tests/resolvers/Mutation/createEvent.spec.ts b/tests/resolvers/Mutation/createEvent.spec.ts index 27b365d603..41929cf5c1 100644 --- a/tests/resolvers/Mutation/createEvent.spec.ts +++ b/tests/resolvers/Mutation/createEvent.spec.ts @@ -7,6 +7,7 @@ import { EventAttendee, Organization, User, + RecurrenceRule, } from "../../../src/models"; import type { MutationCreateEventArgs } from "../../../src/types/generatedGraphQLTypes"; import { @@ -16,11 +17,10 @@ import { } from "../../helpers/db"; import { fail } from "assert"; -import { addMonths } from "date-fns"; +import { addDays, addMonths } from "date-fns"; import { afterAll, beforeAll, describe, expect, it, vi } from "vitest"; import { LENGTH_VALIDATION_ERROR, - ORGANIZATION_NOT_AUTHORIZED_ERROR, ORGANIZATION_NOT_FOUND_ERROR, USER_NOT_AUTHORIZED_ERROR, USER_NOT_FOUND_ERROR, @@ -30,7 +30,7 @@ import { NotFoundError, UnauthorizedError, } from "../../../src/libraries/errors"; -import { Frequency, RecurrenceRule } from "../../../src/models/RecurrenceRule"; + import { convertToUTCDate, countTotalMondaysInMonth, @@ -205,8 +205,7 @@ describe("resolvers -> Mutation -> createEvent", () => { } }); - it(`throws UnauthorizedError if user with _id === context.userId is neither the creator - nor a member of the organization with _id === args.organizationId`, async () => { + it(`throws UnauthorizedError if user with _id === context.userId is neither a superadmin, an admin of the organization, or a member of the organization with _id === args.organizationId`, async () => { try { const args: MutationCreateEventArgs = { data: { @@ -227,10 +226,11 @@ describe("resolvers -> Mutation -> createEvent", () => { images: ["image_url_1", "image_url_2", "image_url_3", "image_url_4"], }, }; - const newUser = await createTestUser(); + + const randomTestUser = await createTestUser(); const context = { - userId: newUser?.id, + userId: randomTestUser?._id, }; const { createEvent: createEventResolverError } = await import( @@ -240,16 +240,14 @@ describe("resolvers -> Mutation -> createEvent", () => { await createEventResolverError?.({}, args, context); } catch (error: unknown) { if (error instanceof UnauthorizedError) { - expect(error.message).toEqual( - ORGANIZATION_NOT_AUTHORIZED_ERROR.MESSAGE, - ); + expect(error.message).toEqual(USER_NOT_AUTHORIZED_ERROR.MESSAGE); } else { fail(`Expected UnauthorizedError, but got ${error}`); } } }); - it(`creates the single non-recurring event and returns it`, async () => { + it(`creates a single non-recurring event and returns it`, async () => { await User.updateOne( { _id: testUser?._id, @@ -345,11 +343,12 @@ describe("resolvers -> Mutation -> createEvent", () => { ); }); - it(`creates default Weekly recurring instances if the recurrenceRuleData is not provided`, async () => { + it(`creates a recurring event with default infinite weekly recurrence, if the recurrenceRuleData is not provided`, async () => { let startDate = new Date(); startDate = convertToUTCDate(startDate); - const endDate = addMonths(startDate, 1); + let endDate = addDays(startDate, 2); + endDate = convertToUTCDate(endDate); const args: MutationCreateEventArgs = { data: { @@ -398,14 +397,11 @@ describe("resolvers -> Mutation -> createEvent", () => { ); const recurrenceRule = await RecurrenceRule.findOne({ - startDate, - endDate, - frequency: Frequency.WEEKLY, + _id: createEventPayload?.recurrenceRuleId, }); const baseRecurringEvent = await Event.findOne({ - isBaseRecurringEvent: true, - startDate: startDate.toUTCString(), + _id: createEventPayload?.baseRecurringEventId, }); const recurringEvents = await Event.find({ @@ -416,7 +412,12 @@ describe("resolvers -> Mutation -> createEvent", () => { }).lean(); expect(recurringEvents).toBeDefined(); - expect(recurringEvents.length).toEqual(5); + + expect(recurrenceRule?.recurrenceStartDate).toEqual(startDate); + expect(recurrenceRule?.recurrenceEndDate).toBeNull(); + + expect(baseRecurringEvent?.startDate).toEqual(startDate); + expect(baseRecurringEvent?.endDate).toBeNull(); const attendeeExists = await EventAttendee.exists({ userId: testUser?._id, @@ -431,19 +432,33 @@ describe("resolvers -> Mutation -> createEvent", () => { .select(["registeredEvents"]) .lean(); + const updatedTestUserAppProfile = await AppUserProfile.findOne({ + userId: testUser?._id, + }) + .select(["createdEvents"]) + .select(["eventAdmin"]) + .lean(); + expect(updatedTestUser).toEqual( expect.objectContaining({ registeredEvents: expect.arrayContaining([createEventPayload?._id]), }), ); + + expect(updatedTestUserAppProfile).toEqual( + expect.objectContaining({ + createdEvents: expect.arrayContaining([createEventPayload?._id]), + eventAdmin: expect.arrayContaining([createEventPayload?._id]), + }), + ); }); - it(`creates the daily recurring event upto an end date based on the recurrenceRuleData`, async () => { + it(`creates a daily recurring event upto an end date based on the recurrenceRuleData`, async () => { let startDate = new Date(); - startDate = addMonths(startDate, 1); startDate = convertToUTCDate(startDate); + const endDate = startDate; - const endDate = addMonths(startDate, 5); + const recurrenceEndDate = addMonths(startDate, 5); const args: MutationCreateEventArgs = { data: { @@ -463,6 +478,8 @@ describe("resolvers -> Mutation -> createEvent", () => { title: "newTitle", }, recurrenceRuleData: { + recurrenceStartDate: startDate, + recurrenceEndDate, frequency: "DAILY", }, }; @@ -494,15 +511,11 @@ describe("resolvers -> Mutation -> createEvent", () => { ); const recurrenceRule = await RecurrenceRule.findOne({ - frequency: Frequency.DAILY, - startDate, - endDate, + _id: createEventPayload?.recurrenceRuleId, }); const baseRecurringEvent = await Event.findOne({ - isBaseRecurringEvent: true, - startDate: startDate.toUTCString(), - endDate: endDate.toUTCString(), + _id: createEventPayload?.baseRecurringEventId, }); const recurringEvents = await Event.find({ @@ -514,6 +527,12 @@ describe("resolvers -> Mutation -> createEvent", () => { expect(recurringEvents).toBeDefined(); + expect(recurrenceRule?.recurrenceStartDate).toEqual(startDate); + expect(recurrenceRule?.recurrenceEndDate).toEqual(recurrenceEndDate); + + expect(baseRecurringEvent?.startDate).toEqual(startDate); + expect(baseRecurringEvent?.endDate).toEqual(recurrenceEndDate); + const attendeeExists = await EventAttendee.exists({ userId: testUser?._id, eventId: createEventPayload?._id, @@ -527,18 +546,31 @@ describe("resolvers -> Mutation -> createEvent", () => { .select(["registeredEvents"]) .lean(); + const updatedTestUserAppProfile = await AppUserProfile.findOne({ + userId: testUser?._id, + }) + .select(["createdEvents"]) + .select(["eventAdmin"]) + .lean(); + expect(updatedTestUser).toEqual( expect.objectContaining({ registeredEvents: expect.arrayContaining([createEventPayload?._id]), }), ); + + expect(updatedTestUserAppProfile).toEqual( + expect.objectContaining({ + createdEvents: expect.arrayContaining([createEventPayload?._id]), + eventAdmin: expect.arrayContaining([createEventPayload?._id]), + }), + ); }); - it(`creates the daily recurring event with no end date based on the recurrenceRuleData`, async () => { + it(`creates a daily recurring event upto a certain number of occurences based on the recurrenceRuleData`, async () => { let startDate = new Date(); - startDate = addMonths(startDate, 2); - startDate = convertToUTCDate(startDate); + const endDate = startDate; const args: MutationCreateEventArgs = { data: { @@ -552,10 +584,11 @@ describe("resolvers -> Mutation -> createEvent", () => { location: "newLocation", recurring: true, startDate, - startTime: startDate.toUTCString(), + endDate, title: "newTitle", }, recurrenceRuleData: { + recurrenceStartDate: startDate, frequency: "DAILY", count: 10, }, @@ -588,13 +621,11 @@ describe("resolvers -> Mutation -> createEvent", () => { ); const recurrenceRule = await RecurrenceRule.findOne({ - frequency: Frequency.DAILY, - startDate, + _id: createEventPayload?.recurrenceRuleId, }); const baseRecurringEvent = await Event.findOne({ - isBaseRecurringEvent: true, - startDate: startDate.toUTCString(), + _id: createEventPayload?.baseRecurringEventId, }); const recurringEvents = await Event.find({ @@ -620,18 +651,31 @@ describe("resolvers -> Mutation -> createEvent", () => { .select(["registeredEvents"]) .lean(); + const updatedTestUserAppProfile = await AppUserProfile.findOne({ + userId: testUser?._id, + }) + .select(["createdEvents"]) + .select(["eventAdmin"]) + .lean(); + expect(updatedTestUser).toEqual( expect.objectContaining({ registeredEvents: expect.arrayContaining([createEventPayload?._id]), }), ); + + expect(updatedTestUserAppProfile).toEqual( + expect.objectContaining({ + createdEvents: expect.arrayContaining([createEventPayload?._id]), + eventAdmin: expect.arrayContaining([createEventPayload?._id]), + }), + ); }); - it(`creates the weekly recurring event with no end date based on the recurrenceRuleData`, async () => { + it(`creates a weekly recurring event upto a certain number of occurences based on the recurrenceRuleData`, async () => { let startDate = new Date(); - startDate = addMonths(startDate, 3); - startDate = convertToUTCDate(startDate); + const endDate = startDate; const args: MutationCreateEventArgs = { data: { @@ -645,10 +689,11 @@ describe("resolvers -> Mutation -> createEvent", () => { location: "newLocation", recurring: true, startDate, - startTime: startDate.toUTCString(), + endDate, title: "newTitle", }, recurrenceRuleData: { + recurrenceStartDate: startDate, frequency: "WEEKLY", weekDays: ["THURSDAY", "SATURDAY"], count: 10, @@ -682,13 +727,11 @@ describe("resolvers -> Mutation -> createEvent", () => { ); const recurrenceRule = await RecurrenceRule.findOne({ - frequency: Frequency.WEEKLY, - startDate, + _id: createEventPayload?.recurrenceRuleId, }); const baseRecurringEvent = await Event.findOne({ - isBaseRecurringEvent: true, - startDate: startDate.toUTCString(), + _id: createEventPayload?.baseRecurringEventId, }); const recurringEvents = await Event.find({ @@ -714,18 +757,31 @@ describe("resolvers -> Mutation -> createEvent", () => { .select(["registeredEvents"]) .lean(); + const updatedTestUserAppProfile = await AppUserProfile.findOne({ + userId: testUser?._id, + }) + .select(["createdEvents"]) + .select(["eventAdmin"]) + .lean(); + expect(updatedTestUser).toEqual( expect.objectContaining({ registeredEvents: expect.arrayContaining([createEventPayload?._id]), }), ); + + expect(updatedTestUserAppProfile).toEqual( + expect.objectContaining({ + createdEvents: expect.arrayContaining([createEventPayload?._id]), + eventAdmin: expect.arrayContaining([createEventPayload?._id]), + }), + ); }); - it(`creates the monthly recurring event with no end date based on the recurrenceRuleData`, async () => { + it(`creates a monthly recurring event upto a certain number of occurences based on the recurrenceRuleData`, async () => { let startDate = new Date(); - startDate = addMonths(startDate, 4); - startDate = convertToUTCDate(startDate); + const endDate = startDate; const args: MutationCreateEventArgs = { data: { @@ -739,10 +795,11 @@ describe("resolvers -> Mutation -> createEvent", () => { location: "newLocation", recurring: true, startDate, - startTime: startDate.toUTCString(), + endDate, title: "newTitle", }, recurrenceRuleData: { + recurrenceStartDate: startDate, frequency: "MONTHLY", count: 10, }, @@ -775,13 +832,11 @@ describe("resolvers -> Mutation -> createEvent", () => { ); const recurrenceRule = await RecurrenceRule.findOne({ - frequency: Frequency.MONTHLY, - startDate, + _id: createEventPayload?.recurrenceRuleId, }); const baseRecurringEvent = await Event.findOne({ - isBaseRecurringEvent: true, - startDate: startDate.toUTCString(), + _id: createEventPayload?.baseRecurringEventId, }); const recurringEvents = await Event.find({ @@ -807,18 +862,31 @@ describe("resolvers -> Mutation -> createEvent", () => { .select(["registeredEvents"]) .lean(); + const updatedTestUserAppProfile = await AppUserProfile.findOne({ + userId: testUser?._id, + }) + .select(["createdEvents"]) + .select(["eventAdmin"]) + .lean(); + expect(updatedTestUser).toEqual( expect.objectContaining({ registeredEvents: expect.arrayContaining([createEventPayload?._id]), }), ); + + expect(updatedTestUserAppProfile).toEqual( + expect.objectContaining({ + createdEvents: expect.arrayContaining([createEventPayload?._id]), + eventAdmin: expect.arrayContaining([createEventPayload?._id]), + }), + ); }); - it(`creates the yearly recurring event with no end date based on the recurrenceRuleData`, async () => { + it(`creates a yearly recurring event upto a certain number of occurences based on the recurrenceRuleData`, async () => { let startDate = new Date(); - startDate = addMonths(startDate, 5); - startDate = convertToUTCDate(startDate); + const endDate = startDate; const args: MutationCreateEventArgs = { data: { @@ -832,10 +900,11 @@ describe("resolvers -> Mutation -> createEvent", () => { location: "newLocation", recurring: true, startDate, - startTime: startDate.toUTCString(), + endDate, title: "newTitle", }, recurrenceRuleData: { + recurrenceStartDate: startDate, frequency: "YEARLY", count: 10, }, @@ -868,13 +937,11 @@ describe("resolvers -> Mutation -> createEvent", () => { ); const recurrenceRule = await RecurrenceRule.findOne({ - frequency: Frequency.YEARLY, - startDate, + _id: createEventPayload?.recurrenceRuleId, }); const baseRecurringEvent = await Event.findOne({ - isBaseRecurringEvent: true, - startDate: startDate.toUTCString(), + _id: createEventPayload?.baseRecurringEventId, }); const recurringEvents = await Event.find({ @@ -900,18 +967,31 @@ describe("resolvers -> Mutation -> createEvent", () => { .select(["registeredEvents"]) .lean(); + const updatedTestUserAppProfile = await AppUserProfile.findOne({ + userId: testUser?._id, + }) + .select(["createdEvents"]) + .select(["eventAdmin"]) + .lean(); + expect(updatedTestUser).toEqual( expect.objectContaining({ registeredEvents: expect.arrayContaining([createEventPayload?._id]), }), ); + + expect(updatedTestUserAppProfile).toEqual( + expect.objectContaining({ + createdEvents: expect.arrayContaining([createEventPayload?._id]), + eventAdmin: expect.arrayContaining([createEventPayload?._id]), + }), + ); }); - it(`creates a biweekly recurring event with no end date based on the recurrenceRuleData`, async () => { + it(`creates a biweekly recurring event upto a certain number of occurences on the recurrenceRuleData`, async () => { let startDate = new Date(); - startDate = addMonths(startDate, 6); - startDate = convertToUTCDate(startDate); + const endDate = startDate; const args: MutationCreateEventArgs = { data: { @@ -925,10 +1005,11 @@ describe("resolvers -> Mutation -> createEvent", () => { location: "newLocation", recurring: true, startDate, - startTime: startDate.toUTCString(), + endDate, title: "newTitle", }, recurrenceRuleData: { + recurrenceStartDate: startDate, frequency: "WEEKLY", interval: 2, count: 10, @@ -962,13 +1043,11 @@ describe("resolvers -> Mutation -> createEvent", () => { ); const recurrenceRule = await RecurrenceRule.findOne({ - frequency: Frequency.WEEKLY, - startDate, + _id: createEventPayload?.recurrenceRuleId, }); const baseRecurringEvent = await Event.findOne({ - isBaseRecurringEvent: true, - startDate: startDate.toUTCString(), + _id: createEventPayload?.baseRecurringEventId, }); const recurringEvents = await Event.find({ @@ -994,16 +1073,29 @@ describe("resolvers -> Mutation -> createEvent", () => { .select(["registeredEvents"]) .lean(); + const updatedTestUserAppProfile = await AppUserProfile.findOne({ + userId: testUser?._id, + }) + .select(["createdEvents"]) + .select(["eventAdmin"]) + .lean(); + expect(updatedTestUser).toEqual( expect.objectContaining({ registeredEvents: expect.arrayContaining([createEventPayload?._id]), }), ); + + expect(updatedTestUserAppProfile).toEqual( + expect.objectContaining({ + createdEvents: expect.arrayContaining([createEventPayload?._id]), + eventAdmin: expect.arrayContaining([createEventPayload?._id]), + }), + ); }); it(`creates a monthly recurring event that occurs on every first Monday of the month`, async () => { let startDate = new Date(); - startDate = addMonths(startDate, 7); startDate = convertToUTCDate(startDate); startDate.setDate(1); @@ -1015,6 +1107,8 @@ describe("resolvers -> Mutation -> createEvent", () => { ); } + const endDate = startDate; + const args: MutationCreateEventArgs = { data: { organizationId: testOrganization?.id, @@ -1027,10 +1121,11 @@ describe("resolvers -> Mutation -> createEvent", () => { location: "newLocation", recurring: true, startDate, - startTime: startDate.toUTCString(), + endDate, title: "newTitle", }, recurrenceRuleData: { + recurrenceStartDate: startDate, frequency: "MONTHLY", weekDays: ["MONDAY"], count: 10, @@ -1065,13 +1160,11 @@ describe("resolvers -> Mutation -> createEvent", () => { ); const recurrenceRule = await RecurrenceRule.findOne({ - frequency: Frequency.MONTHLY, - startDate, + _id: createEventPayload?.recurrenceRuleId, }); const baseRecurringEvent = await Event.findOne({ - isBaseRecurringEvent: true, - startDate: startDate.toUTCString(), + _id: createEventPayload?.baseRecurringEventId, }); const recurringEvents = await Event.find({ @@ -1113,16 +1206,29 @@ describe("resolvers -> Mutation -> createEvent", () => { .select(["registeredEvents"]) .lean(); + const updatedTestUserAppProfile = await AppUserProfile.findOne({ + userId: testUser?._id, + }) + .select(["createdEvents"]) + .select(["eventAdmin"]) + .lean(); + expect(updatedTestUser).toEqual( expect.objectContaining({ registeredEvents: expect.arrayContaining([createEventPayload?._id]), }), ); + + expect(updatedTestUserAppProfile).toEqual( + expect.objectContaining({ + createdEvents: expect.arrayContaining([createEventPayload?._id]), + eventAdmin: expect.arrayContaining([createEventPayload?._id]), + }), + ); }); it(`creates a monthly recurring event that occurs on every last Monday of the month`, async () => { let startDate = new Date(); - startDate = addMonths(startDate, 9); startDate = convertToUTCDate(startDate); startDate.setDate(0); @@ -1133,6 +1239,8 @@ describe("resolvers -> Mutation -> createEvent", () => { startDate.setDate(startDate.getDate() - 1); } + const endDate = startDate; + const args: MutationCreateEventArgs = { data: { organizationId: testOrganization?.id, @@ -1145,10 +1253,11 @@ describe("resolvers -> Mutation -> createEvent", () => { location: "newLocation", recurring: true, startDate, - startTime: startDate.toUTCString(), + endDate, title: "newTitle", }, recurrenceRuleData: { + recurrenceStartDate: startDate, frequency: "MONTHLY", weekDays: ["MONDAY"], count: 10, @@ -1183,13 +1292,11 @@ describe("resolvers -> Mutation -> createEvent", () => { ); const recurrenceRule = await RecurrenceRule.findOne({ - frequency: Frequency.MONTHLY, - startDate, + _id: createEventPayload?.recurrenceRuleId, }); const baseRecurringEvent = await Event.findOne({ - isBaseRecurringEvent: true, - startDate: startDate.toUTCString(), + _id: createEventPayload?.baseRecurringEventId, }); const recurringEvents = await Event.find({ @@ -1237,11 +1344,25 @@ describe("resolvers -> Mutation -> createEvent", () => { .select(["registeredEvents"]) .lean(); + const updatedTestUserAppProfile = await AppUserProfile.findOne({ + userId: testUser?._id, + }) + .select(["createdEvents"]) + .select(["eventAdmin"]) + .lean(); + expect(updatedTestUser).toEqual( expect.objectContaining({ registeredEvents: expect.arrayContaining([createEventPayload?._id]), }), ); + + expect(updatedTestUserAppProfile).toEqual( + expect.objectContaining({ + createdEvents: expect.arrayContaining([createEventPayload?._id]), + eventAdmin: expect.arrayContaining([createEventPayload?._id]), + }), + ); }); /* Commenting out this test because we are not using firebase notification anymore. diff --git a/tests/resolvers/Mutation/removeEvent.spec.ts b/tests/resolvers/Mutation/removeEvent.spec.ts index 5bdfbc4efc..1e79768240 100644 --- a/tests/resolvers/Mutation/removeEvent.spec.ts +++ b/tests/resolvers/Mutation/removeEvent.spec.ts @@ -8,6 +8,7 @@ import { Event, EventAttendee, User, + RecurrenceRule, } from "../../../src/models"; import type { MutationCreateEventArgs, @@ -22,7 +23,9 @@ import { import { afterAll, beforeAll, describe, expect, it, vi } from "vitest"; import { + BASE_RECURRING_EVENT_NOT_FOUND, EVENT_NOT_FOUND_ERROR, + RECURRENCE_RULE_NOT_FOUND, USER_NOT_AUTHORIZED_ERROR, USER_NOT_FOUND_ERROR, } from "../../../src/constants"; @@ -32,20 +35,16 @@ import { createTestActionItems } from "../../helpers/actionItem"; import type { TestEventType } from "../../helpers/events"; import { createTestEvent } from "../../helpers/events"; import type { - // TestAppUserProfileType, TestOrganizationType, TestUserType, } from "../../helpers/userAndOrg"; import { fail } from "assert"; import { convertToUTCDate } from "../../../src/utilities/recurrenceDatesUtil"; import { addMonths } from "date-fns"; -import { Frequency, RecurrenceRule } from "../../../src/models/RecurrenceRule"; let MONGOOSE_INSTANCE: typeof mongoose; let testUser: TestUserType; -// let testUserAppProfile: TestAppUserProfileType; let newTestUser: TestUserType; -// let newTestUserAppProfile: TestAppUserProfileType; let testOrganization: TestOrganizationType; let testEvent: TestEventType; let newTestEvent: TestEventType; @@ -265,8 +264,7 @@ describe("resolvers -> Mutation -> removeEvent", () => { it(`removes a single instance of a recurring event`, async () => { let startDate = new Date(); startDate = convertToUTCDate(startDate); - - const endDate = addMonths(startDate, 6); + const endDate = startDate; const createEventArgs: MutationCreateEventArgs = { data: { @@ -283,6 +281,11 @@ describe("resolvers -> Mutation -> removeEvent", () => { startDate, title: "newTitle", }, + recurrenceRuleData: { + recurrenceStartDate: startDate, + recurrenceEndDate: convertToUTCDate(addMonths(startDate, 6)), + frequency: "WEEKLY", + }, }; const createEventContext = { @@ -300,14 +303,11 @@ describe("resolvers -> Mutation -> removeEvent", () => { )) as InterfaceEvent; const recurrenceRule = await RecurrenceRule.findOne({ - startDate, - endDate, - frequency: Frequency.WEEKLY, + _id: testRecurringEvent.recurrenceRuleId, }); const baseRecurringEvent = await Event.findOne({ - isBaseRecurringEvent: true, - startDate: startDate.toUTCString(), + _id: testRecurringEvent.baseRecurringEventId, }); // find an event one week ahead of the testRecurringEvent and delete it @@ -351,7 +351,7 @@ describe("resolvers -> Mutation -> removeEvent", () => { const args: MutationRemoveEventArgs = { id: recurringEventInstance?._id.toString(), - recurringEventDeleteType: "ThisInstance", + recurringEventDeleteType: "thisInstance", }; const context = { @@ -419,12 +419,31 @@ describe("resolvers -> Mutation -> removeEvent", () => { it(`removes this and following instances of the recurring event`, async () => { // find an event 10 weeks ahead of the testRecurringEvent + // and delete the instances ahead from there const recurringInstances = await Event.find({ recurrenceRuleId: testRecurringEvent?.recurrenceRuleId, }); - const recurringEventInstance = recurringInstances[10]; + // find the instance 9 weeks ahead of the testRecurringEvent that wouldn't be deleted + // i.e. it would be the latest instance remaining for that recurrence rule + const latestRecurringEventInstance = recurringInstances[9]; + + let recurrenceRule = await RecurrenceRule.findOne({ + _id: testRecurringEvent.recurrenceRuleId, + }); + + let baseRecurringEvent = await Event.findOne({ + _id: testRecurringEvent.baseRecurringEventId, + }); + + expect(recurrenceRule?.recurrenceEndDate).not.toEqual( + latestRecurringEventInstance.endDate, + ); + expect(baseRecurringEvent?.endDate).not.toEqual( + latestRecurringEventInstance.endDate, + ); + let attendeeExists = await EventAttendee.exists({ userId: testUser?._id, eventId: recurringEventInstance?._id, @@ -459,7 +478,7 @@ describe("resolvers -> Mutation -> removeEvent", () => { const args: MutationRemoveEventArgs = { id: recurringEventInstance?._id.toString(), - recurringEventDeleteType: "ThisAndFollowingInstances", + recurringEventDeleteType: "thisAndFollowingInstances", }; const context = { @@ -489,6 +508,21 @@ describe("resolvers -> Mutation -> removeEvent", () => { }), ); + recurrenceRule = await RecurrenceRule.findOne({ + _id: testRecurringEvent.recurrenceRuleId, + }); + + baseRecurringEvent = await Event.findOne({ + _id: testRecurringEvent.baseRecurringEventId, + }); + + expect(recurrenceRule?.recurrenceEndDate).toEqual( + latestRecurringEventInstance.endDate, + ); + expect(baseRecurringEvent?.endDate).toEqual( + latestRecurringEventInstance.endDate, + ); + attendeeExists = await EventAttendee.exists({ userId: testUser?._id, eventId: recurringEventInstance?._id, @@ -528,13 +562,30 @@ describe("resolvers -> Mutation -> removeEvent", () => { it(`changes the recurrencerule and deletes the new series`, async () => { // find an event 7 weeks ahead of the testRecurringEvent - // and update it to follow a new recurrence series + // and update this and following instance to follow a new recurrence series const recurringInstances = await Event.find({ recurrenceRuleId: testRecurringEvent?.recurrenceRuleId, }); - let recurringEventInstance = recurringInstances[7] as InterfaceEvent; + // find the new latestInstance of for the current recurrence rule + const latestRecurringEventInstance = recurringInstances[6]; + + let recurrenceRule = await RecurrenceRule.findOne({ + _id: testRecurringEvent.recurrenceRuleId, + }); + + let baseRecurringEvent = await Event.findOne({ + _id: testRecurringEvent.baseRecurringEventId, + }); + + expect(recurrenceRule?.recurrenceEndDate).not.toEqual( + latestRecurringEventInstance.endDate, + ); + expect(baseRecurringEvent?.endDate).not.toEqual( + latestRecurringEventInstance.endDate, + ); + let attendeeExists = await EventAttendee.exists({ userId: testUser?._id, eventId: recurringEventInstance?._id, @@ -573,9 +624,13 @@ describe("resolvers -> Mutation -> removeEvent", () => { title: "update the recurrence rule of this and following instances", }, recurrenceRuleData: { + recurrenceStartDate: recurringEventInstance.startDate, + recurrenceEndDate: convertToUTCDate( + addMonths(recurringEventInstance.startDate, 6), + ), frequency: "DAILY", }, - recurringEventUpdateType: "ThisAndFollowingInstances", + recurringEventUpdateType: "thisAndFollowingInstances", }; const updateEventContext = { @@ -594,7 +649,7 @@ describe("resolvers -> Mutation -> removeEvent", () => { const args: MutationRemoveEventArgs = { id: recurringEventInstance?._id.toString(), - recurringEventDeleteType: "ThisAndFollowingInstances", + recurringEventDeleteType: "thisAndFollowingInstances", }; const context = { @@ -624,6 +679,21 @@ describe("resolvers -> Mutation -> removeEvent", () => { }), ); + recurrenceRule = await RecurrenceRule.findOne({ + _id: testRecurringEvent.recurrenceRuleId, + }); + + baseRecurringEvent = await Event.findOne({ + _id: testRecurringEvent.baseRecurringEventId, + }); + + expect(recurrenceRule?.recurrenceEndDate).toEqual( + latestRecurringEventInstance.endDate, + ); + expect(baseRecurringEvent?.endDate).toEqual( + latestRecurringEventInstance.endDate, + ); + attendeeExists = await EventAttendee.exists({ userId: testUser?._id, eventId: recurringEventInstance?._id, @@ -688,7 +758,7 @@ describe("resolvers -> Mutation -> removeEvent", () => { let updatedTestUser = await User.findOne({ _id: testUser?._id, }) - .select(["eventAdmin", "createdEvents", "registeredEvents"]) + .select(["registeredEvents"]) .lean(); let updatedTestUserAppProfile = await AppUserProfile.findOne({ @@ -730,7 +800,7 @@ describe("resolvers -> Mutation -> removeEvent", () => { const args: MutationRemoveEventArgs = { id: testRecurringEvent?._id.toString(), - recurringEventDeleteType: "AllInstances", + recurringEventDeleteType: "allInstances", }; const context = { @@ -819,6 +889,281 @@ describe("resolvers -> Mutation -> removeEvent", () => { ); }); + it(`removes the dangling recurrence rule and base recurrening event documents`, async () => { + let startDate = new Date(); + startDate = convertToUTCDate(startDate); + const endDate = startDate; + + const createEventArgs: MutationCreateEventArgs = { + data: { + organizationId: testOrganization?.id, + allDay: true, + description: "newDescription", + endDate, + isPublic: false, + isRegisterable: false, + latitude: 1, + longitude: 1, + location: "newLocation", + recurring: true, + startDate, + title: "newTitle", + }, + recurrenceRuleData: { + recurrenceStartDate: startDate, + recurrenceEndDate: convertToUTCDate(addMonths(startDate, 6)), + frequency: "WEEKLY", + }, + }; + + const createEventContext = { + userId: testUser?.id, + }; + + const { createEvent: createEventResolver } = await import( + "../../../src/resolvers/Mutation/createEvent" + ); + + testRecurringEvent = (await createEventResolver?.( + {}, + createEventArgs, + createEventContext, + )) as InterfaceEvent; + + const recurrenceRule = await RecurrenceRule.findOne({ + _id: testRecurringEvent.recurrenceRuleId, + }); + + const baseRecurringEvent = await Event.findOne({ + _id: testRecurringEvent.baseRecurringEventId, + }); + + // find an event one week ahead of the testRecurringEvent and delete it + const recurringInstances = await Event.find({ + recurrenceRuleId: testRecurringEvent?.recurrenceRuleId, + }); + + const recurringEventInstance = recurringInstances[1]; + + let attendeeExists = await EventAttendee.exists({ + userId: testUser?._id, + eventId: recurringEventInstance?._id, + }); + + expect(attendeeExists).toBeTruthy(); + + let updatedTestUser = await User.findOne({ + _id: testUser?._id, + }) + .select(["registeredEvents"]) + .lean(); + + let updatedTestUserAppProfile = await AppUserProfile.findOne({ + userId: testUser?._id, + }) + .select(["eventAdmin", "createdEvents"]) + .lean(); + + expect(updatedTestUser).toEqual( + expect.objectContaining({ + registeredEvents: expect.arrayContaining([recurringEventInstance?._id]), + }), + ); + + expect(updatedTestUserAppProfile).toEqual( + expect.objectContaining({ + eventAdmin: expect.arrayContaining([recurringEventInstance?._id]), + createdEvents: expect.arrayContaining([recurringEventInstance?._id]), + }), + ); + + const args: MutationRemoveEventArgs = { + id: recurringEventInstance?._id.toString(), + recurringEventDeleteType: "allInstances", + }; + + const context = { + userId: testUser?.id, + }; + + const removeEventPayload = await removeEventResolver?.({}, args, context); + + expect(removeEventPayload).toEqual( + expect.objectContaining({ + allDay: true, + description: "newDescription", + isPublic: false, + recurrenceRuleId: recurrenceRule?._id.toString(), + baseRecurringEventId: baseRecurringEvent?._id.toString(), + startDate: recurringEventInstance.startDate, + isRegisterable: false, + latitude: 1, + longitude: 1, + location: "newLocation", + recurring: true, + title: "newTitle", + creatorId: testUser?._id, + admins: expect.arrayContaining([testUser?._id]), + organization: testOrganization?._id, + }), + ); + + const recurrenceRuleExist = await RecurrenceRule.exists({ + _id: recurrenceRule?._id, + }); + + const baseRecurringEventExist = await Event.exists({ + _id: baseRecurringEvent?._id, + }); + + expect(recurrenceRuleExist).toBeFalsy(); + expect(baseRecurringEventExist).toBeFalsy(); + + attendeeExists = await EventAttendee.exists({ + userId: testUser?._id, + eventId: recurringEventInstance?._id, + }); + + expect(attendeeExists).toBeFalsy(); + + updatedTestUser = await User.findOne({ + _id: testUser?._id, + }) + .select(["registeredEvents"]) + .lean(); + + updatedTestUserAppProfile = await AppUserProfile.findOne({ + userId: testUser?._id, + }) + .select(["eventAdmin", "createdEvents"]) + .lean(); + + expect(updatedTestUser).toEqual( + expect.objectContaining({ + registeredEvents: expect.not.arrayContaining([ + recurringEventInstance?._id, + ]), + }), + ); + + expect(updatedTestUserAppProfile).toEqual( + expect.objectContaining({ + eventAdmin: expect.not.arrayContaining([recurringEventInstance?._id]), + createdEvents: expect.not.arrayContaining([ + recurringEventInstance?._id, + ]), + }), + ); + }); + + it(`throws not found error if the base recurring event doesn't exist`, async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementation((message) => `Translated ${message}`); + + try { + let startDate = new Date(); + startDate = convertToUTCDate(startDate); + const endDate = startDate; + + const createEventArgs: MutationCreateEventArgs = { + data: { + organizationId: testOrganization?.id, + allDay: true, + description: "newDescription", + endDate, + isPublic: false, + isRegisterable: false, + latitude: 1, + longitude: 1, + location: "newLocation", + recurring: true, + startDate, + title: "newTitle", + }, + recurrenceRuleData: { + recurrenceStartDate: startDate, + recurrenceEndDate: convertToUTCDate(addMonths(startDate, 6)), + frequency: "WEEKLY", + }, + }; + + const createEventContext = { + userId: testUser?.id, + }; + + const { createEvent: createEventResolver } = await import( + "../../../src/resolvers/Mutation/createEvent" + ); + + testRecurringEvent = (await createEventResolver?.( + {}, + createEventArgs, + createEventContext, + )) as InterfaceEvent; + + // delete the base recurring event + await Event.deleteOne({ + _id: testRecurringEvent.baseRecurringEventId, + }); + + const args: MutationRemoveEventArgs = { + id: testRecurringEvent?._id.toString(), + recurringEventDeleteType: "thisInstance", + }; + + const context = { + userId: testUser?.id, + }; + + await removeEventResolver?.({}, args, context); + } catch (error: unknown) { + expect(spy).toHaveBeenCalledWith(BASE_RECURRING_EVENT_NOT_FOUND.MESSAGE); + if (error instanceof Error) { + expect(error.message).toEqual( + `Translated ${BASE_RECURRING_EVENT_NOT_FOUND.MESSAGE}`, + ); + } else { + fail(`Expected NotFoundError, but got ${error}`); + } + } + }); + + it(`throws not found error if the recurrence rule doesn't exist`, async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementation((message) => `Translated ${message}`); + + try { + // delete the base recurrence rule + await RecurrenceRule.deleteOne({ + _id: testRecurringEvent.recurrenceRuleId, + }); + + const args: MutationRemoveEventArgs = { + id: testRecurringEvent?._id.toString(), + recurringEventDeleteType: "thisInstance", + }; + + const context = { + userId: testUser?.id, + }; + + await removeEventResolver?.({}, args, context); + } catch (error: unknown) { + expect(spy).toHaveBeenCalledWith(RECURRENCE_RULE_NOT_FOUND.MESSAGE); + if (error instanceof Error) { + expect(error.message).toEqual( + `Translated ${RECURRENCE_RULE_NOT_FOUND.MESSAGE}`, + ); + } else { + fail(`Expected NotFoundError, but got ${error}`); + } + } + }); + it("throws an error if user does not have appUserProfile", async () => { const { requestContext } = await import("../../../src/libraries"); const spy = vi diff --git a/tests/resolvers/Mutation/updateEvent.spec.ts b/tests/resolvers/Mutation/updateEvent.spec.ts index cac49fa52a..483621ec51 100644 --- a/tests/resolvers/Mutation/updateEvent.spec.ts +++ b/tests/resolvers/Mutation/updateEvent.spec.ts @@ -6,6 +6,7 @@ import { Event, EventAttendee, AppUserProfile, + RecurrenceRule, } from "../../../src/models"; import type { InterfaceAppUserProfile } from "../../../src/models"; import type { MutationUpdateEventArgs } from "../../../src/types/generatedGraphQLTypes"; @@ -16,8 +17,10 @@ import { } from "../../helpers/db"; import { + BASE_RECURRING_EVENT_NOT_FOUND, EVENT_NOT_FOUND_ERROR, LENGTH_VALIDATION_ERROR, + RECURRENCE_RULE_NOT_FOUND, USER_NOT_AUTHORIZED_ERROR, USER_NOT_FOUND_ERROR, } from "../../../src/constants"; @@ -38,15 +41,14 @@ import { createTestUserAndOrganization } from "../../helpers/userAndOrg"; import type { TestEventType } from "../../helpers/events"; import { cacheEvents } from "../../../src/services/EventCache/cacheEvents"; import { convertToUTCDate } from "../../../src/utilities/recurrenceDatesUtil"; -import { addWeeks } from "date-fns"; -import { RecurrenceRule } from "../../../src/models/RecurrenceRule"; +import { addDays, addWeeks } from "date-fns"; + import { fail } from "assert"; import { cacheAppUserProfile } from "../../../src/services/AppUserProfileCache/cacheAppUserProfile"; let MONGOOSE_INSTANCE: typeof mongoose; let testUser: TestUserType; let testEvent: TestEventType; -let testSingleEvent: TestEventType; let testRecurringEvent: TestEventType; let testRecurringEventInstance: TestEventType; let testRecurringEventException: TestEventType; @@ -104,6 +106,7 @@ describe("resolvers -> Mutation -> updateEvent", () => { try { const args: MutationUpdateEventArgs = { id: "", + data: {}, }; const context = { @@ -136,6 +139,7 @@ describe("resolvers -> Mutation -> updateEvent", () => { try { const args: MutationUpdateEventArgs = { id: new Types.ObjectId().toString(), + data: {}, }; const context = { @@ -191,6 +195,7 @@ describe("resolvers -> Mutation -> updateEvent", () => { const args: MutationUpdateEventArgs = { id: testEvent?._id, + data: {}, }; const context = { @@ -298,7 +303,7 @@ describe("resolvers -> Mutation -> updateEvent", () => { expect(updateEventPayload).toEqual(testUpdateEventPayload); }); - it(`updates the single event with _id === args.id to be recurring and returns a recurring instance`, async () => { + it(`updates a single event with _id === args.id to be recurring with default weekly infinite recurrence`, async () => { const testSingleEvent1 = await Event.create({ creatorId: testUser?._id, registrants: [{ userId: testUser?._id, user: testUser?._id }], @@ -311,7 +316,7 @@ describe("resolvers -> Mutation -> updateEvent", () => { description: "description2", allDay: true, startDate: convertToUTCDate(new Date()), - endDate: addWeeks(convertToUTCDate(new Date()), 10), + endDate: convertToUTCDate(addDays(new Date(), 2)), }); await User.updateOne( @@ -375,6 +380,27 @@ describe("resolvers -> Mutation -> updateEvent", () => { }), ); + // assign the returned recurring event instance to the testRecurringEvent + testRecurringEvent = updateEventPayload as TestEventType; + + const recurrenceRule = await RecurrenceRule.findOne({ + _id: updateEventPayload?.recurrenceRuleId, + }); + + const baseRecurringEvent = await Event.findOne({ + _id: updateEventPayload?.baseRecurringEventId, + }); + + expect(recurrenceRule?.recurrenceStartDate).toEqual( + updateEventPayload?.startDate, + ); + expect(baseRecurringEvent?.startDate).toEqual( + updateEventPayload?.startDate, + ); + + expect(recurrenceRule?.recurrenceEndDate).toBeNull(); + expect(baseRecurringEvent?.endDate).toBeNull(); + const attendeeExists = await EventAttendee.exists({ userId: testUser?._id, eventId: updateEventPayload?._id, @@ -393,55 +419,29 @@ describe("resolvers -> Mutation -> updateEvent", () => { registeredEvents: expect.arrayContaining([updateEventPayload?._id]), }), ); - }); - - it(`updates the single event with _id === args.id to be infinitely recurring`, async () => { - const startDate = convertToUTCDate(new Date()); - const endDate = convertToUTCDate(addWeeks(startDate, 4)); - testSingleEvent = await Event.create({ - creatorId: testUser?._id, - registrants: [{ userId: testUser?._id, user: testUser?._id }], - organization: testOrganization?._id, - isRegisterable: true, - isPublic: true, - location: "location3", - title: "title3", - admins: [testUser?._id], - description: "description3", - allDay: true, - startDate, - endDate, - }); + const updatedTestUserAppProfile = await AppUserProfile.findOne({ + userId: testUser?._id, + }) + .select(["createdEvents"]) + .select(["eventAdmin"]) + .lean(); - await User.updateOne( - { - _id: testUser?._id, - }, - { - $push: { - registeredEvents: testSingleEvent._id, - }, - }, - ); - await AppUserProfile.updateOne( - { - _id: testUser?._id, - }, - { - $push: { - eventAdmin: testSingleEvent._id, - createdEvents: testSingleEvent._id, - }, - }, + expect(updatedTestUserAppProfile).toEqual( + expect.objectContaining({ + createdEvents: expect.arrayContaining([updateEventPayload?._id]), + eventAdmin: expect.arrayContaining([updateEventPayload?._id]), + }), ); + }); + + it(`updates this instance of a recurring event with _id === args.id, making it an exception`, async () => { const args: MutationUpdateEventArgs = { - id: testSingleEvent?._id, + id: testRecurringEvent?._id, data: { - recurring: true, - endDate: null, - title: "infinitely recurring", + title: "updated this instance", }, + recurringEventUpdateType: "thisInstance", }; const context = { @@ -454,68 +454,55 @@ describe("resolvers -> Mutation -> updateEvent", () => { const updateEventPayload = await updateEventResolver?.({}, args, context); - const testSingleEventExists = await Event.exists({ - _id: testSingleEvent?._id, + const recurrenceRule = await RecurrenceRule.findOne({ + _id: updateEventPayload?.recurrenceRuleId, }); - expect(testSingleEventExists).toBeFalsy(); + const baseRecurringEvent = await Event.findOne({ + _id: updateEventPayload?.baseRecurringEventId, + }); expect(updateEventPayload).toEqual( expect.objectContaining({ allDay: true, - title: "infinitely recurring", - description: "description3", + title: "updated this instance", + description: "description2", isPublic: true, isRegisterable: true, - location: "location3", + location: "location2", recurring: true, + recurrenceRuleId: recurrenceRule?._id, + baseRecurringEventId: baseRecurringEvent?._id, + isRecurringEventException: true, creatorId: testUser?._id, admins: expect.arrayContaining([testUser?._id]), organization: testOrganization?._id, }), ); - // assign the returned recurring event instance to the testRecurringEvent - testRecurringEvent = updateEventPayload as TestEventType; - - const recurrenceRule = await RecurrenceRule.findOne({ - _id: updateEventPayload?.recurrenceRuleId, - }); - - const baseRecurringEvent = await Event.findOne({ - _id: updateEventPayload?.baseRecurringEventId, - }); - - expect(recurrenceRule?.endDate).toBe(null); - expect(baseRecurringEvent?.endDate).toBe(null); - - const attendeeExists = await EventAttendee.exists({ - userId: testUser?._id, - eventId: updateEventPayload?._id, - }); - - expect(attendeeExists).toBeTruthy(); - - const updatedTestUser = await User.findOne({ - _id: testUser?._id, - }) - .select(["registeredEvents"]) - .lean(); - - expect(updatedTestUser).toEqual( + expect(baseRecurringEvent).toEqual( expect.objectContaining({ - registeredEvents: expect.arrayContaining([updateEventPayload?._id]), + allDay: true, + title: "made recurring", + description: "description2", + isPublic: true, + isRegisterable: true, + location: "location2", + recurring: true, + creatorId: testUser?._id, + admins: expect.arrayContaining([testUser?._id]), + organization: testOrganization?._id, }), ); }); - it(`updates this instance of a recurring event with _id === args.id`, async () => { + it(`updates this instance of a recurring event with _id === args.id to not be an exception`, async () => { const args: MutationUpdateEventArgs = { id: testRecurringEvent?._id, data: { - title: "updated this instance", + isRecurringEventException: false, }, - recurringEventUpdateType: "ThisInstance", + recurringEventUpdateType: "thisInstance", }; const context = { @@ -528,65 +515,46 @@ describe("resolvers -> Mutation -> updateEvent", () => { const updateEventPayload = await updateEventResolver?.({}, args, context); + const recurrenceRule = await RecurrenceRule.findOne({ + _id: updateEventPayload?.recurrenceRuleId, + }); + + const baseRecurringEvent = await Event.findOne({ + _id: updateEventPayload?.baseRecurringEventId, + }); + expect(updateEventPayload).toEqual( expect.objectContaining({ allDay: true, title: "updated this instance", - description: "description3", + description: "description2", isPublic: true, isRegisterable: true, - location: "location3", + location: "location2", recurring: true, + recurrenceRuleId: recurrenceRule?._id, + baseRecurringEventId: baseRecurringEvent?._id, + isRecurringEventException: false, creatorId: testUser?._id, admins: expect.arrayContaining([testUser?._id]), organization: testOrganization?._id, }), ); - const recurrenceRule = await RecurrenceRule.findOne({ - _id: updateEventPayload?.recurrenceRuleId, - }); - - const baseRecurringEvent = await Event.findOne({ - _id: updateEventPayload?.baseRecurringEventId, - }); - - expect(recurrenceRule?.endDate).toBe(null); - expect(baseRecurringEvent?.endDate).toBe(null); - expect(baseRecurringEvent).toEqual( expect.objectContaining({ allDay: true, - title: "infinitely recurring", - description: "description3", + title: "made recurring", + description: "description2", isPublic: true, isRegisterable: true, - location: "location3", + location: "location2", recurring: true, creatorId: testUser?._id, admins: expect.arrayContaining([testUser?._id]), organization: testOrganization?._id, }), ); - - const attendeeExists = await EventAttendee.exists({ - userId: testUser?._id, - eventId: updateEventPayload?._id, - }); - - expect(attendeeExists).toBeTruthy(); - - const updatedTestUser = await User.findOne({ - _id: testUser?._id, - }) - .select(["registeredEvents"]) - .lean(); - - expect(updatedTestUser).toEqual( - expect.objectContaining({ - registeredEvents: expect.arrayContaining([updateEventPayload?._id]), - }), - ); }); it(`updates all instances of the recurring event belonging to the recurrence pattern of event with _id === args.id`, async () => { @@ -595,7 +563,7 @@ describe("resolvers -> Mutation -> updateEvent", () => { data: { title: "updated all instance", }, - recurringEventUpdateType: "AllInstances", + recurringEventUpdateType: "allInstances", }; const context = { @@ -608,65 +576,49 @@ describe("resolvers -> Mutation -> updateEvent", () => { const updateEventPayload = await updateEventResolver?.({}, args, context); + const recurrenceRule = await RecurrenceRule.findOne({ + _id: updateEventPayload?.recurrenceRuleId, + }); + + const baseRecurringEvent = await Event.findOne({ + _id: updateEventPayload?.baseRecurringEventId, + }); + expect(updateEventPayload).toEqual( expect.objectContaining({ allDay: true, title: "updated all instance", - description: "description3", + description: "description2", isPublic: true, isRegisterable: true, - location: "location3", + location: "location2", recurring: true, + recurrenceRuleId: recurrenceRule?._id, + baseRecurringEventId: baseRecurringEvent?._id, + isRecurringEventException: false, creatorId: testUser?._id, admins: expect.arrayContaining([testUser?._id]), organization: testOrganization?._id, }), ); - const recurrenceRule = await RecurrenceRule.findOne({ - _id: updateEventPayload?.recurrenceRuleId, - }); - - const baseRecurringEvent = await Event.findOne({ - _id: updateEventPayload?.baseRecurringEventId, - }); - - expect(recurrenceRule?.endDate).toBe(null); + expect(recurrenceRule?.recurrenceEndDate).toBe(null); expect(baseRecurringEvent?.endDate).toBe(null); expect(baseRecurringEvent).toEqual( expect.objectContaining({ allDay: true, title: "updated all instance", - description: "description3", + description: "description2", isPublic: true, isRegisterable: true, - location: "location3", + location: "location2", recurring: true, creatorId: testUser?._id, admins: expect.arrayContaining([testUser?._id]), organization: testOrganization?._id, }), ); - - const attendeeExists = await EventAttendee.exists({ - userId: testUser?._id, - eventId: updateEventPayload?._id, - }); - - expect(attendeeExists).toBeTruthy(); - - const updatedTestUser = await User.findOne({ - _id: testUser?._id, - }) - .select(["registeredEvents"]) - .lean(); - - expect(updatedTestUser).toEqual( - expect.objectContaining({ - registeredEvents: expect.arrayContaining([updateEventPayload?._id]), - }), - ); }); it(`updates this and following instances of recurring event belonging to the recurrence pattern of event with _id === args.id`, async () => { @@ -674,7 +626,6 @@ describe("resolvers -> Mutation -> updateEvent", () => { const recurringInstances = await Event.find({ recurrenceRuleId: testRecurringEvent?.recurrenceRuleId, }); - testRecurringEventInstance = recurringInstances[4]; const args: MutationUpdateEventArgs = { @@ -682,7 +633,7 @@ describe("resolvers -> Mutation -> updateEvent", () => { data: { title: "updated this and following instances", }, - recurringEventUpdateType: "ThisAndFollowingInstances", + recurringEventUpdateType: "thisAndFollowingInstances", }; const context = { @@ -695,65 +646,49 @@ describe("resolvers -> Mutation -> updateEvent", () => { const updateEventPayload = await updateEventResolver?.({}, args, context); + const recurrenceRule = await RecurrenceRule.findOne({ + _id: updateEventPayload?.recurrenceRuleId, + }); + + const baseRecurringEvent = await Event.findOne({ + _id: updateEventPayload?.baseRecurringEventId, + }); + expect(updateEventPayload).toEqual( expect.objectContaining({ allDay: true, title: "updated this and following instances", - description: "description3", + description: "description2", isPublic: true, isRegisterable: true, - location: "location3", + location: "location2", recurring: true, + recurrenceRuleId: recurrenceRule?._id, + baseRecurringEventId: baseRecurringEvent?._id, + isRecurringEventException: false, creatorId: testUser?._id, admins: expect.arrayContaining([testUser?._id]), organization: testOrganization?._id, }), ); - const recurrenceRule = await RecurrenceRule.findOne({ - _id: updateEventPayload?.recurrenceRuleId, - }); - - const baseRecurringEvent = await Event.findOne({ - _id: updateEventPayload?.baseRecurringEventId, - }); - - expect(recurrenceRule?.endDate).toBe(null); + expect(recurrenceRule?.recurrenceEndDate).toBe(null); expect(baseRecurringEvent?.endDate).toBe(null); expect(baseRecurringEvent).toEqual( expect.objectContaining({ allDay: true, title: "updated this and following instances", - description: "description3", + description: "description2", isPublic: true, isRegisterable: true, - location: "location3", + location: "location2", recurring: true, creatorId: testUser?._id, admins: expect.arrayContaining([testUser?._id]), organization: testOrganization?._id, }), ); - - const attendeeExists = await EventAttendee.exists({ - userId: testUser?._id, - eventId: updateEventPayload?._id, - }); - - expect(attendeeExists).toBeTruthy(); - - const updatedTestUser = await User.findOne({ - _id: testUser?._id, - }) - .select(["registeredEvents"]) - .lean(); - - expect(updatedTestUser).toEqual( - expect.objectContaining({ - registeredEvents: expect.arrayContaining([updateEventPayload?._id]), - }), - ); }); it(`updates this and following instances of recurring event to follow a new recurrence pattern`, async () => { @@ -763,9 +698,11 @@ describe("resolvers -> Mutation -> updateEvent", () => { title: "updated the recurrence rule of this and following instances", }, recurrenceRuleData: { + recurrenceStartDate: testRecurringEventInstance?.startDate, + recurrenceEndDate: null, frequency: "DAILY", }, - recurringEventUpdateType: "ThisAndFollowingInstances", + recurringEventUpdateType: "thisAndFollowingInstances", }; const context = { @@ -778,32 +715,36 @@ describe("resolvers -> Mutation -> updateEvent", () => { const updateEventPayload = await updateEventResolver?.({}, args, context); + const recurrenceRule = await RecurrenceRule.findOne({ + _id: updateEventPayload?.recurrenceRuleId, + }); + + const baseRecurringEvent = await Event.findOne({ + _id: updateEventPayload?.baseRecurringEventId, + }); + expect(updateEventPayload).toEqual( expect.objectContaining({ allDay: true, title: "updated the recurrence rule of this and following instances", - description: "description3", + description: "description2", isPublic: true, isRegisterable: true, - location: "location3", + location: "location2", recurring: true, + recurrenceRuleId: recurrenceRule?._id, + baseRecurringEventId: baseRecurringEvent?._id, + isRecurringEventException: false, creatorId: testUser?._id, admins: expect.arrayContaining([testUser?._id]), organization: testOrganization?._id, }), ); + // update the testRecurringEventInstance to this new updated event testRecurringEventInstance = updateEventPayload as TestEventType; - const recurrenceRule = await RecurrenceRule.findOne({ - _id: updateEventPayload?.recurrenceRuleId, - }); - - const baseRecurringEvent = await Event.findOne({ - _id: updateEventPayload?.baseRecurringEventId, - }); - - expect(recurrenceRule?.endDate).toBe(null); + expect(recurrenceRule?.recurrenceEndDate).toBe(null); expect(recurrenceRule?.frequency).toEqual("DAILY"); expect(baseRecurringEvent?.endDate).toBe(null); @@ -811,10 +752,10 @@ describe("resolvers -> Mutation -> updateEvent", () => { expect.objectContaining({ allDay: true, title: "updated the recurrence rule of this and following instances", - description: "description3", + description: "description2", isPublic: true, isRegisterable: true, - location: "location3", + location: "location2", recurring: true, creatorId: testUser?._id, admins: expect.arrayContaining([testUser?._id]), @@ -840,23 +781,38 @@ describe("resolvers -> Mutation -> updateEvent", () => { registeredEvents: expect.arrayContaining([updateEventPayload?._id]), }), ); - }); - - it(`updates this and following instances of recurring event to follow a new recurrence rule and have a specified endDate`, async () => { - const newEndDate = convertToUTCDate( - addWeeks(testRecurringEventInstance?.startDate as string, 30), - ); - const args: MutationUpdateEventArgs = { + const updatedTestUserAppProfile = await AppUserProfile.findOne({ + userId: testUser?._id, + }) + .select(["createdEvents"]) + .select(["eventAdmin"]) + .lean(); + + expect(updatedTestUserAppProfile).toEqual( + expect.objectContaining({ + createdEvents: expect.arrayContaining([updateEventPayload?._id]), + eventAdmin: expect.arrayContaining([updateEventPayload?._id]), + }), + ); + }); + + it(`updates this and following instances of recurring event to follow a new recurrence rule and have a specified endDate`, async () => { + const newRecurrenceEndDate = convertToUTCDate( + addWeeks(testRecurringEventInstance?.startDate as string, 30), + ); + + const args: MutationUpdateEventArgs = { id: testRecurringEventInstance?._id, data: { title: "updated the recurrence rule of this and following instances", - endDate: newEndDate, }, recurrenceRuleData: { + recurrenceStartDate: testRecurringEventInstance?.startDate, + recurrenceEndDate: newRecurrenceEndDate, frequency: "WEEKLY", }, - recurringEventUpdateType: "ThisAndFollowingInstances", + recurringEventUpdateType: "thisAndFollowingInstances", }; const context = { @@ -869,43 +825,47 @@ describe("resolvers -> Mutation -> updateEvent", () => { const updateEventPayload = await updateEventResolver?.({}, args, context); + const recurrenceRule = await RecurrenceRule.findOne({ + _id: updateEventPayload?.recurrenceRuleId, + }); + + const baseRecurringEvent = await Event.findOne({ + _id: updateEventPayload?.baseRecurringEventId, + }); + expect(updateEventPayload).toEqual( expect.objectContaining({ allDay: true, title: "updated the recurrence rule of this and following instances", - description: "description3", + description: "description2", isPublic: true, isRegisterable: true, - location: "location3", + location: "location2", recurring: true, + recurrenceRuleId: recurrenceRule?._id, + baseRecurringEventId: baseRecurringEvent?._id, + isRecurringEventException: false, creatorId: testUser?._id, admins: expect.arrayContaining([testUser?._id]), organization: testOrganization?._id, }), ); + // update the testRecurringEventInstance to this new updated event testRecurringEventInstance = updateEventPayload as TestEventType; - const recurrenceRule = await RecurrenceRule.findOne({ - _id: updateEventPayload?.recurrenceRuleId, - }); - - const baseRecurringEvent = await Event.findOne({ - _id: updateEventPayload?.baseRecurringEventId, - }); - - expect(recurrenceRule?.endDate).toEqual(newEndDate); + expect(recurrenceRule?.recurrenceEndDate).toEqual(newRecurrenceEndDate); expect(recurrenceRule?.frequency).toEqual("WEEKLY"); - expect(baseRecurringEvent?.endDate).toEqual(newEndDate); + expect(baseRecurringEvent?.endDate).toEqual(newRecurrenceEndDate); expect(baseRecurringEvent).toEqual( expect.objectContaining({ allDay: true, title: "updated the recurrence rule of this and following instances", - description: "description3", + description: "description2", isPublic: true, isRegisterable: true, - location: "location3", + location: "location2", recurring: true, creatorId: testUser?._id, admins: expect.arrayContaining([testUser?._id]), @@ -931,6 +891,20 @@ describe("resolvers -> Mutation -> updateEvent", () => { registeredEvents: expect.arrayContaining([updateEventPayload?._id]), }), ); + + const updatedTestUserAppProfile = await AppUserProfile.findOne({ + userId: testUser?._id, + }) + .select(["createdEvents"]) + .select(["eventAdmin"]) + .lean(); + + expect(updatedTestUserAppProfile).toEqual( + expect.objectContaining({ + createdEvents: expect.arrayContaining([updateEventPayload?._id]), + eventAdmin: expect.arrayContaining([updateEventPayload?._id]), + }), + ); }); it(`updates all instances of recurring event again`, async () => { @@ -939,7 +913,7 @@ describe("resolvers -> Mutation -> updateEvent", () => { data: { title: "updated all instances again", }, - recurringEventUpdateType: "AllInstances", + recurringEventUpdateType: "allInstances", }; const context = { @@ -952,60 +926,49 @@ describe("resolvers -> Mutation -> updateEvent", () => { const updateEventPayload = await updateEventResolver?.({}, args, context); + const recurrenceRule = await RecurrenceRule.findOne({ + _id: updateEventPayload?.recurrenceRuleId, + }); + + const baseRecurringEvent = await Event.findOne({ + _id: updateEventPayload?.baseRecurringEventId, + }); + expect(updateEventPayload).toEqual( expect.objectContaining({ allDay: true, title: "updated all instances again", - description: "description3", + description: "description2", isPublic: true, isRegisterable: true, - location: "location3", + location: "location2", recurring: true, + recurrenceRuleId: recurrenceRule?._id, + baseRecurringEventId: baseRecurringEvent?._id, + isRecurringEventException: false, creatorId: testUser?._id, admins: expect.arrayContaining([testUser?._id]), organization: testOrganization?._id, }), ); + // update the testRecurringEventInstance to this new updated event testRecurringEventInstance = updateEventPayload as TestEventType; - const baseRecurringEvent = await Event.findOne({ - _id: updateEventPayload?.baseRecurringEventId, - }); - expect(baseRecurringEvent).toEqual( expect.objectContaining({ allDay: true, title: "updated all instances again", - description: "description3", + description: "description2", isPublic: true, isRegisterable: true, - location: "location3", + location: "location2", recurring: true, creatorId: testUser?._id, admins: expect.arrayContaining([testUser?._id]), organization: testOrganization?._id, }), ); - - const attendeeExists = await EventAttendee.exists({ - userId: testUser?._id, - eventId: updateEventPayload?._id, - }); - - expect(attendeeExists).toBeTruthy(); - - const updatedTestUser = await User.findOne({ - _id: testUser?._id, - }) - .select(["registeredEvents"]) - .lean(); - - expect(updatedTestUser).toEqual( - expect.objectContaining({ - registeredEvents: expect.arrayContaining([updateEventPayload?._id]), - }), - ); }); it(`updates this and following instances of recurring event to follow a new recurrence rule infinitely again`, async () => { @@ -1013,12 +976,13 @@ describe("resolvers -> Mutation -> updateEvent", () => { id: testRecurringEventInstance?._id, data: { title: "updated the recurrence rule of this and following instances", - endDate: null, }, recurrenceRuleData: { + recurrenceStartDate: testRecurringEventInstance?.startDate, + recurrenceEndDate: null, frequency: "DAILY", }, - recurringEventUpdateType: "ThisAndFollowingInstances", + recurringEventUpdateType: "thisAndFollowingInstances", }; const context = { @@ -1031,43 +995,47 @@ describe("resolvers -> Mutation -> updateEvent", () => { const updateEventPayload = await updateEventResolver?.({}, args, context); + const recurrenceRule = await RecurrenceRule.findOne({ + _id: updateEventPayload?.recurrenceRuleId, + }); + + const baseRecurringEvent = await Event.findOne({ + _id: updateEventPayload?.baseRecurringEventId, + }); + expect(updateEventPayload).toEqual( expect.objectContaining({ allDay: true, title: "updated the recurrence rule of this and following instances", - description: "description3", + description: "description2", isPublic: true, isRegisterable: true, - location: "location3", + location: "location2", recurring: true, + recurrenceRuleId: recurrenceRule?._id, + baseRecurringEventId: baseRecurringEvent?._id, + isRecurringEventException: false, creatorId: testUser?._id, admins: expect.arrayContaining([testUser?._id]), organization: testOrganization?._id, }), ); + // update the testRecurringEventInstance to this new updated event testRecurringEventInstance = updateEventPayload as TestEventType; - const recurrenceRule = await RecurrenceRule.findOne({ - _id: updateEventPayload?.recurrenceRuleId, - }); - - const baseRecurringEvent = await Event.findOne({ - _id: updateEventPayload?.baseRecurringEventId, - }); - - expect(recurrenceRule?.endDate).toEqual(null); + expect(recurrenceRule?.recurrenceEndDate).toBeNull(); expect(recurrenceRule?.frequency).toEqual("DAILY"); - expect(baseRecurringEvent?.endDate).toEqual(null); + expect(baseRecurringEvent?.endDate).toBeNull(); expect(baseRecurringEvent).toEqual( expect.objectContaining({ allDay: true, title: "updated the recurrence rule of this and following instances", - description: "description3", + description: "description2", isPublic: true, isRegisterable: true, - location: "location3", + location: "location2", recurring: true, creatorId: testUser?._id, admins: expect.arrayContaining([testUser?._id]), @@ -1093,15 +1061,40 @@ describe("resolvers -> Mutation -> updateEvent", () => { registeredEvents: expect.arrayContaining([updateEventPayload?._id]), }), ); + + const updatedTestUserAppProfile = await AppUserProfile.findOne({ + userId: testUser?._id, + }) + .select(["createdEvents"]) + .select(["eventAdmin"]) + .lean(); + + expect(updatedTestUserAppProfile).toEqual( + expect.objectContaining({ + createdEvents: expect.arrayContaining([updateEventPayload?._id]), + eventAdmin: expect.arrayContaining([updateEventPayload?._id]), + }), + ); }); - it(`updates this and following instances of recurring event that were following the old recurrence rule`, async () => { + it(`updates all instances of the recurring event to follow a new recurrence rule`, async () => { + // find an instance 5 days ahead of the testRecurringEventInstance + const recurringInstances = await Event.find({ + recurrenceRuleId: testRecurringEventInstance?.recurrenceRuleId, + }); + const ramdomRecurringEventInstance = recurringInstances[5] as TestEventType; + const args: MutationUpdateEventArgs = { - id: testRecurringEvent?._id, + id: ramdomRecurringEventInstance?._id, data: { - title: "instances following the old recurrence rule", + title: "updated all the instances to be weekly recurring", + }, + recurrenceRuleData: { + recurrenceStartDate: testRecurringEventInstance?.startDate, + recurrenceEndDate: null, + frequency: "WEEKLY", }, - recurringEventUpdateType: "ThisAndFollowingInstances", + recurringEventUpdateType: "allInstances", }; const context = { @@ -1112,43 +1105,53 @@ describe("resolvers -> Mutation -> updateEvent", () => { "../../../src/resolvers/Mutation/updateEvent" ); - const updateEventPayload = await updateEventResolver?.({}, args, context); + const updatedEventPayload = (await updateEventResolver?.( + {}, + args, + context, + )) as TestEventType; - expect(updateEventPayload).toEqual( + const recurrenceRule = await RecurrenceRule.findOne({ + _id: updatedEventPayload?.recurrenceRuleId, + }); + + const baseRecurringEvent = await Event.findOne({ + _id: updatedEventPayload?.baseRecurringEventId, + }); + + expect(updatedEventPayload).toEqual( expect.objectContaining({ allDay: true, - title: "instances following the old recurrence rule", - description: "description3", + title: "updated all the instances to be weekly recurring", + description: "description2", isPublic: true, isRegisterable: true, - location: "location3", + location: "location2", recurring: true, + recurrenceRuleId: recurrenceRule?._id, + baseRecurringEventId: baseRecurringEvent?._id, + isRecurringEventException: false, creatorId: testUser?._id, admins: expect.arrayContaining([testUser?._id]), organization: testOrganization?._id, }), ); - const recurrenceRule = await RecurrenceRule.findOne({ - _id: updateEventPayload?.recurrenceRuleId, - }); + // update the testRecurringEventInstance to this new updated event + testRecurringEventInstance = updatedEventPayload as TestEventType; - const baseRecurringEvent = await Event.findOne({ - _id: updateEventPayload?.baseRecurringEventId, - }); - - expect(recurrenceRule?.endDate).not.toEqual(null); + expect(recurrenceRule?.recurrenceEndDate).toBeNull(); expect(recurrenceRule?.frequency).toEqual("WEEKLY"); - expect(baseRecurringEvent?.endDate).toEqual(null); + expect(baseRecurringEvent?.endDate).toBeNull(); expect(baseRecurringEvent).toEqual( expect.objectContaining({ allDay: true, - title: "updated the recurrence rule of this and following instances", - description: "description3", + title: "updated all the instances to be weekly recurring", + description: "description2", isPublic: true, isRegisterable: true, - location: "location3", + location: "location2", recurring: true, creatorId: testUser?._id, admins: expect.arrayContaining([testUser?._id]), @@ -1158,7 +1161,7 @@ describe("resolvers -> Mutation -> updateEvent", () => { const attendeeExists = await EventAttendee.exists({ userId: testUser?._id, - eventId: updateEventPayload?._id, + eventId: updatedEventPayload?._id, }); expect(attendeeExists).toBeTruthy(); @@ -1171,26 +1174,66 @@ describe("resolvers -> Mutation -> updateEvent", () => { expect(updatedTestUser).toEqual( expect.objectContaining({ - registeredEvents: expect.arrayContaining([updateEventPayload?._id]), + registeredEvents: expect.arrayContaining([updatedEventPayload?._id]), + }), + ); + + const updatedTestUserAppProfile = await AppUserProfile.findOne({ + userId: testUser?._id, + }) + .select(["createdEvents"]) + .select(["eventAdmin"]) + .lean(); + + expect(updatedTestUserAppProfile).toEqual( + expect.objectContaining({ + createdEvents: expect.arrayContaining([updatedEventPayload?._id]), + eventAdmin: expect.arrayContaining([updatedEventPayload?._id]), }), ); }); - it(`updating this instance to be an exception`, async () => { - // find an instance two weeks ahead of the testRecurringEvent + it(`updates this and following instances after changing the event instance duration`, async () => { + let recurrenceRule = await RecurrenceRule.findOne({ + _id: testRecurringEventInstance?.recurrenceRuleId, + }); + + let baseRecurringEvent = await Event.findOne({ + _id: testRecurringEventInstance?.baseRecurringEventId, + }); + + expect(recurrenceRule?.recurrenceEndDate).toBeNull(); + expect(recurrenceRule?.frequency).toEqual("WEEKLY"); + expect(baseRecurringEvent?.endDate).toBeNull(); + + // find an instance 5 days ahead of the testRecurringEventInstance const recurringInstances = await Event.find({ - recurrenceRuleId: testRecurringEvent?.recurrenceRuleId, + recurrenceRuleId: testRecurringEventInstance?.recurrenceRuleId, }); + const ramdomRecurringEventInstance = recurringInstances[4] as TestEventType; - testRecurringEventException = recurringInstances[2]; + // find the new latest instance + const newLatestInstance = recurringInstances[3]; + + const instanceStartDate = ramdomRecurringEventInstance?.startDate; + const newInstanceEndDate = addDays( + ramdomRecurringEventInstance?.endDate as string, + 1, + ); const args: MutationUpdateEventArgs = { - id: testRecurringEventException?._id, + id: ramdomRecurringEventInstance?._id, data: { - title: "exception instance", - isRecurringEventException: true, + title: "creating a new series by changing the instance's duration", + startDate: instanceStartDate, + endDate: newInstanceEndDate, + }, + recurrenceRuleData: { + recurrenceStartDate: recurrenceRule?.recurrenceStartDate, + recurrenceEndDate: null, + frequency: "WEEKLY", }, - recurringEventUpdateType: "ThisInstance", + recurringEventUpdateType: "thisAndFollowingInstances", }; const context = { @@ -1206,39 +1249,41 @@ describe("resolvers -> Mutation -> updateEvent", () => { expect(updateEventPayload).toEqual( expect.objectContaining({ allDay: true, - title: "exception instance", - description: "description3", + title: "creating a new series by changing the instance's duration", + description: "description2", isPublic: true, isRegisterable: true, - isRecurringEventException: true, - location: "location3", + location: "location2", recurring: true, + isRecurringEventException: false, creatorId: testUser?._id, admins: expect.arrayContaining([testUser?._id]), organization: testOrganization?._id, }), ); - const recurrenceRule = await RecurrenceRule.findOne({ - _id: updateEventPayload?.recurrenceRuleId, + recurrenceRule = await RecurrenceRule.findOne({ + _id: ramdomRecurringEventInstance?.recurrenceRuleId, }); - const baseRecurringEvent = await Event.findOne({ - _id: updateEventPayload?.baseRecurringEventId, + baseRecurringEvent = await Event.findOne({ + _id: ramdomRecurringEventInstance?.baseRecurringEventId, }); - expect(recurrenceRule?.endDate).not.toEqual(null); + expect(recurrenceRule?.recurrenceEndDate).toEqual( + newLatestInstance.startDate, + ); expect(recurrenceRule?.frequency).toEqual("WEEKLY"); - expect(baseRecurringEvent?.endDate).toEqual(null); + expect(baseRecurringEvent?.endDate).toBeNull(); expect(baseRecurringEvent).toEqual( expect.objectContaining({ allDay: true, - title: "updated the recurrence rule of this and following instances", - description: "description3", + title: "creating a new series by changing the instance's duration", + description: "description2", isPublic: true, isRegisterable: true, - location: "location3", + location: "location2", recurring: true, creatorId: testUser?._id, admins: expect.arrayContaining([testUser?._id]), @@ -1264,15 +1309,29 @@ describe("resolvers -> Mutation -> updateEvent", () => { registeredEvents: expect.arrayContaining([updateEventPayload?._id]), }), ); + + const updatedTestUserAppProfile = await AppUserProfile.findOne({ + userId: testUser?._id, + }) + .select(["createdEvents"]) + .select(["eventAdmin"]) + .lean(); + + expect(updatedTestUserAppProfile).toEqual( + expect.objectContaining({ + createdEvents: expect.arrayContaining([updateEventPayload?._id]), + eventAdmin: expect.arrayContaining([updateEventPayload?._id]), + }), + ); }); - it(`updating all instances again to confirm no effect on the exception instance`, async () => { + it(`updates this and following instances of recurring event that were following the old recurrence rule`, async () => { const args: MutationUpdateEventArgs = { id: testRecurringEvent?._id, data: { - title: "update all but the exception", + title: "instances following the old recurrence rule", }, - recurringEventUpdateType: "AllInstances", + recurringEventUpdateType: "thisAndFollowingInstances", }; const context = { @@ -1285,23 +1344,77 @@ describe("resolvers -> Mutation -> updateEvent", () => { const updateEventPayload = await updateEventResolver?.({}, args, context); + const recurrenceRule = await RecurrenceRule.findOne({ + _id: updateEventPayload?.recurrenceRuleId, + }); + + const baseRecurringEvent = await Event.findOne({ + _id: updateEventPayload?.baseRecurringEventId, + }); + expect(updateEventPayload).toEqual( expect.objectContaining({ allDay: true, - title: "update all but the exception", - description: "description3", + title: "instances following the old recurrence rule", + description: "description2", isPublic: true, isRegisterable: true, + location: "location2", + recurring: true, + recurrenceRuleId: recurrenceRule?._id, + baseRecurringEventId: baseRecurringEvent?._id, isRecurringEventException: false, - location: "location3", + creatorId: testUser?._id, + admins: expect.arrayContaining([testUser?._id]), + organization: testOrganization?._id, + }), + ); + + expect(recurrenceRule?.recurrenceEndDate).not.toBeNull(); + expect(recurrenceRule?.frequency).toEqual("WEEKLY"); + expect(baseRecurringEvent?.endDate).toBeNull(); + + expect(baseRecurringEvent).toEqual( + expect.objectContaining({ + allDay: true, + title: "creating a new series by changing the instance's duration", + description: "description2", + isPublic: true, + isRegisterable: true, + location: "location2", recurring: true, creatorId: testUser?._id, admins: expect.arrayContaining([testUser?._id]), organization: testOrganization?._id, }), ); + }); - testRecurringEventInstance = updateEventPayload as TestEventType; + it(`updating this instance to be an exception`, async () => { + // find an instance two weeks ahead of the testRecurringEvent + const recurringInstances = await Event.find({ + recurrenceRuleId: testRecurringEvent?.recurrenceRuleId, + }); + testRecurringEventException = recurringInstances[2]; + + const args: MutationUpdateEventArgs = { + id: testRecurringEventException?._id, + data: { + title: "exception instance", + isRecurringEventException: true, + }, + recurringEventUpdateType: "thisInstance", + }; + + const context = { + userId: testUser?._id, + }; + + const { updateEvent: updateEventResolver } = await import( + "../../../src/resolvers/Mutation/updateEvent" + ); + + const updateEventPayload = await updateEventResolver?.({}, args, context); const recurrenceRule = await RecurrenceRule.findOne({ _id: updateEventPayload?.recurrenceRuleId, @@ -1311,18 +1424,100 @@ describe("resolvers -> Mutation -> updateEvent", () => { _id: updateEventPayload?.baseRecurringEventId, }); - expect(recurrenceRule?.endDate).not.toEqual(null); + expect(updateEventPayload).toEqual( + expect.objectContaining({ + allDay: true, + title: "exception instance", + description: "description2", + isPublic: true, + isRegisterable: true, + location: "location2", + recurring: true, + recurrenceRuleId: recurrenceRule?._id, + baseRecurringEventId: baseRecurringEvent?._id, + isRecurringEventException: true, + creatorId: testUser?._id, + admins: expect.arrayContaining([testUser?._id]), + organization: testOrganization?._id, + }), + ); + + expect(recurrenceRule?.recurrenceEndDate).not.toBeNull(); + expect(baseRecurringEvent?.endDate).toBeNull(); + + expect(baseRecurringEvent).toEqual( + expect.objectContaining({ + allDay: true, + title: "creating a new series by changing the instance's duration", + description: "description2", + isPublic: true, + isRegisterable: true, + location: "location2", + recurring: true, + creatorId: testUser?._id, + admins: expect.arrayContaining([testUser?._id]), + organization: testOrganization?._id, + }), + ); + }); + + it(`updating all instances again to confirm no effect on the exception instance`, async () => { + const args: MutationUpdateEventArgs = { + id: testRecurringEvent?._id, + data: { + title: "update all but the exception", + }, + recurringEventUpdateType: "allInstances", + }; + + const context = { + userId: testUser?._id, + }; + + const { updateEvent: updateEventResolver } = await import( + "../../../src/resolvers/Mutation/updateEvent" + ); + + const updateEventPayload = await updateEventResolver?.({}, args, context); + + const recurrenceRule = await RecurrenceRule.findOne({ + _id: updateEventPayload?.recurrenceRuleId, + }); + + const baseRecurringEvent = await Event.findOne({ + _id: updateEventPayload?.baseRecurringEventId, + }); + + expect(updateEventPayload).toEqual( + expect.objectContaining({ + allDay: true, + title: "update all but the exception", + description: "description2", + isPublic: true, + isRegisterable: true, + location: "location2", + recurring: true, + recurrenceRuleId: recurrenceRule?._id, + baseRecurringEventId: baseRecurringEvent?._id, + isRecurringEventException: false, + creatorId: testUser?._id, + admins: expect.arrayContaining([testUser?._id]), + organization: testOrganization?._id, + }), + ); + + expect(recurrenceRule?.recurrenceEndDate).not.toBeNull(); expect(recurrenceRule?.frequency).toEqual("WEEKLY"); - expect(baseRecurringEvent?.endDate).toEqual(null); + expect(baseRecurringEvent?.endDate).toBeNull(); expect(baseRecurringEvent).toEqual( expect.objectContaining({ allDay: true, - title: "updated the recurrence rule of this and following instances", - description: "description3", + title: "creating a new series by changing the instance's duration", + description: "description2", isPublic: true, isRegisterable: true, - location: "location3", + location: "location2", recurring: true, creatorId: testUser?._id, admins: expect.arrayContaining([testUser?._id]), @@ -1338,36 +1533,97 @@ describe("resolvers -> Mutation -> updateEvent", () => { expect.objectContaining({ allDay: true, title: "exception instance", - description: "description3", + description: "description2", isPublic: true, isRegisterable: true, isRecurringEventException: true, - location: "location3", + location: "location2", recurring: true, creatorId: testUser?._id, admins: expect.arrayContaining([testUser?._id]), organization: testOrganization?._id, }), ); + }); - const attendeeExists = await EventAttendee.exists({ - userId: testUser?._id, - eventId: updateEventPayload?._id, - }); + it(`throws not found error if the base recurring event doesn't exist`, async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementation((message) => `Translated ${message}`); - expect(attendeeExists).toBeTruthy(); + try { + await Event.deleteOne({ + _id: testRecurringEvent?.baseRecurringEventId, + }); - const updatedTestUser = await User.findOne({ - _id: testUser?._id, - }) - .select(["registeredEvents"]) - .lean(); + const args: MutationUpdateEventArgs = { + id: testRecurringEvent?._id, + data: { + title: "update without base recurring event", + }, + recurringEventUpdateType: "allInstances", + }; - expect(updatedTestUser).toEqual( - expect.objectContaining({ - registeredEvents: expect.arrayContaining([updateEventPayload?._id]), - }), - ); + const context = { + userId: testUser?._id, + }; + + const { updateEvent: updateEventResolver } = await import( + "../../../src/resolvers/Mutation/updateEvent" + ); + + await updateEventResolver?.({}, args, context); + } catch (error: unknown) { + expect(spy).toHaveBeenCalledWith(BASE_RECURRING_EVENT_NOT_FOUND.MESSAGE); + if (error instanceof Error) { + expect(error.message).toEqual( + `Translated ${BASE_RECURRING_EVENT_NOT_FOUND.MESSAGE}`, + ); + } else { + fail(`Expected NotFoundError, but got ${error}`); + } + } + }); + + it(`throws not found error if the recurrence rule doesn't exist`, async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementation((message) => `Translated ${message}`); + + try { + await RecurrenceRule.deleteOne({ + _id: testRecurringEvent?.recurrenceRuleId, + }); + + const args: MutationUpdateEventArgs = { + id: testRecurringEvent?._id, + data: { + title: "update without base recurring event", + }, + recurringEventUpdateType: "allInstances", + }; + + const context = { + userId: testUser?._id, + }; + + const { updateEvent: updateEventResolver } = await import( + "../../../src/resolvers/Mutation/updateEvent" + ); + + await updateEventResolver?.({}, args, context); + } catch (error: unknown) { + expect(spy).toHaveBeenCalledWith(RECURRENCE_RULE_NOT_FOUND.MESSAGE); + if (error instanceof Error) { + expect(error.message).toEqual( + `Translated ${RECURRENCE_RULE_NOT_FOUND.MESSAGE}`, + ); + } else { + fail(`Expected NotFoundError, but got ${error}`); + } + } }); }); diff --git a/tests/resolvers/Query/eventsByOrganizationConnection.spec.ts b/tests/resolvers/Query/eventsByOrganizationConnection.spec.ts index 37b8eb0707..cc5a3d75c4 100644 --- a/tests/resolvers/Query/eventsByOrganizationConnection.spec.ts +++ b/tests/resolvers/Query/eventsByOrganizationConnection.spec.ts @@ -11,7 +11,7 @@ import type { QueryEventsByOrganizationConnectionArgs, } from "../../../src/types/generatedGraphQLTypes"; import type { InterfaceEvent } from "../../../src/models"; -import { Event } from "../../../src/models"; +import { Event, Frequency, RecurrenceRule } from "../../../src/models"; import type { TestOrganizationType } from "../../helpers/userAndOrg"; import { createTestUserAndOrganization } from "../../helpers/userAndOrg"; import type { TestEventType } from "../../helpers/events"; @@ -20,8 +20,8 @@ import { beforeAll, afterAll, describe, it, expect, vi } from "vitest"; import { addDays, addYears } from "date-fns"; import { convertToUTCDate } from "../../../src/utilities/recurrenceDatesUtil"; import type { TestUserType } from "../../helpers/user"; -import type { InterfaceRecurrenceRule } from "../../../src/models/RecurrenceRule"; -import { Frequency, RecurrenceRule } from "../../../src/models/RecurrenceRule"; +import type { InterfaceRecurrenceRule } from "../../../src/models/"; + import { RECURRING_EVENT_INSTANCES_DAILY_LIMIT, RECURRING_EVENT_INSTANCES_QUERY_LIMIT, @@ -423,6 +423,7 @@ describe("resolvers -> Query -> organizationsMemberConnection", () => { vi.useFakeTimers(); const startDate = convertToUTCDate(new Date()); + const endDate = startDate; const eventArgs: MutationCreateEventArgs = { data: { @@ -436,10 +437,11 @@ describe("resolvers -> Query -> organizationsMemberConnection", () => { location: "newLocation", recurring: true, startDate, - startTime: startDate.toUTCString(), + endDate, title: "newTitle", }, recurrenceRuleData: { + recurrenceStartDate: startDate, frequency: "DAILY", }, }; @@ -476,7 +478,7 @@ describe("resolvers -> Query -> organizationsMemberConnection", () => { let recurrenceRule = await RecurrenceRule.findOne({ frequency: Frequency.DAILY, - startDate, + recurrenceStartDate: startDate, }); const { recurrenceRuleString } = recurrenceRule as InterfaceRecurrenceRule; @@ -509,7 +511,7 @@ describe("resolvers -> Query -> organizationsMemberConnection", () => { recurrenceRule = await RecurrenceRule.findOne({ frequency: Frequency.DAILY, - startDate, + recurrenceStartDate: startDate, }); const queryUptoDate = addYears( @@ -535,6 +537,7 @@ describe("resolvers -> Query -> organizationsMemberConnection", () => { vi.useFakeTimers(); const startDate = convertToUTCDate(new Date()); + const endDate = startDate; const eventArgs: MutationCreateEventArgs = { data: { @@ -548,10 +551,11 @@ describe("resolvers -> Query -> organizationsMemberConnection", () => { location: "newLocation", recurring: true, startDate, - startTime: startDate.toUTCString(), + endDate, title: "newTitle", }, recurrenceRuleData: { + recurrenceStartDate: startDate, frequency: "WEEKLY", count: 150, }, @@ -589,7 +593,7 @@ describe("resolvers -> Query -> organizationsMemberConnection", () => { let recurrenceRule = await RecurrenceRule.findOne({ frequency: Frequency.WEEKLY, - startDate, + recurrenceStartDate: startDate, }); const { recurrenceRuleString } = recurrenceRule as InterfaceRecurrenceRule; @@ -628,7 +632,7 @@ describe("resolvers -> Query -> organizationsMemberConnection", () => { recurrenceRule = await RecurrenceRule.findOne({ frequency: Frequency.WEEKLY, - startDate, + recurrenceStartDate: startDate, }); const queryUptoDate = addYears( diff --git a/tests/resolvers/RecurrenceRule/baseRecurringEvent.spec.ts b/tests/resolvers/RecurrenceRule/baseRecurringEvent.spec.ts new file mode 100644 index 0000000000..22a32e1737 --- /dev/null +++ b/tests/resolvers/RecurrenceRule/baseRecurringEvent.spec.ts @@ -0,0 +1,93 @@ +import "dotenv/config"; +import { baseRecurringEvent as baseRecurringEventResolver } from "../../../src/resolvers/RecurrenceRule/baseRecurringEvent"; +import { + connect, + disconnect, + dropAllCollectionsFromDatabase, +} from "../../helpers/db"; +import type mongoose from "mongoose"; +import { beforeAll, afterAll, describe, it, expect } from "vitest"; +import { Event, RecurrenceRule } from "../../../src/models"; +import { createTestUserAndOrganization } from "../../helpers/userAndOrg"; +import type { + TestOrganizationType, + TestUserType, +} from "../../helpers/userAndOrg"; + +import { convertToUTCDate } from "../../../src/utilities/recurrenceDatesUtil"; +import type { MutationCreateEventArgs } from "../../../src/types/generatedGraphQLTypes"; + +import type { InterfaceRecurrenceRule } from "../../../src/models"; + +let MONGOOSE_INSTANCE: typeof mongoose; +let testOrganization: TestOrganizationType; +let testUser: TestUserType; + +beforeAll(async () => { + MONGOOSE_INSTANCE = await connect(); + await dropAllCollectionsFromDatabase(MONGOOSE_INSTANCE); + + [testUser, testOrganization] = await createTestUserAndOrganization(); +}); + +afterAll(async () => { + await dropAllCollectionsFromDatabase(MONGOOSE_INSTANCE); + await disconnect(MONGOOSE_INSTANCE); +}); + +describe("resolvers -> RecurrenceRule -> baseRecurringEvent", () => { + it(`returns the base recurring event object for parent recurrence rule`, async () => { + let startDate = new Date(); + startDate = convertToUTCDate(startDate); + const endDate = startDate; + + const args: MutationCreateEventArgs = { + data: { + organizationId: testOrganization?.id, + allDay: true, + description: "newDescription", + isPublic: false, + isRegisterable: false, + latitude: 1, + longitude: 1, + location: "newLocation", + recurring: true, + startDate, + endDate, + title: "newTitle", + }, + recurrenceRuleData: { + recurrenceStartDate: startDate, + frequency: "WEEKLY", + weekDays: ["MONDAY", "TUESDAY", "WEDNESDAY"], + count: 10, + }, + }; + + const context = { + userId: testUser?.id, + }; + const { createEvent: createEventResolver } = await import( + "../../../src/resolvers/Mutation/createEvent" + ); + + const createEventPayload = await createEventResolver?.({}, args, context); + + const recurrenceRule = await RecurrenceRule.findOne({ + _id: createEventPayload?.recurrenceRuleId, + }); + + const baseRecurringEvent = await Event.findOne({ + _id: recurrenceRule?.baseRecurringEventId, + }).lean(); + + const parent = recurrenceRule as InterfaceRecurrenceRule; + const baseRecurringEventPayload = await baseRecurringEventResolver?.( + parent, + {}, + {}, + ); + + expect(baseRecurringEvent).toEqual(baseRecurringEventPayload); + }); +}); diff --git a/tests/resolvers/RecurrenceRule/organization.spec.ts b/tests/resolvers/RecurrenceRule/organization.spec.ts new file mode 100644 index 0000000000..642858cd70 --- /dev/null +++ b/tests/resolvers/RecurrenceRule/organization.spec.ts @@ -0,0 +1,84 @@ +import "dotenv/config"; +import { organization as organizationResolver } from "../../../src/resolvers/RecurrenceRule/organization"; +import { + connect, + disconnect, + dropAllCollectionsFromDatabase, +} from "../../helpers/db"; +import type mongoose from "mongoose"; +import { beforeAll, afterAll, describe, it, expect } from "vitest"; +import { createTestUserAndOrganization } from "../../helpers/userAndOrg"; +import type { + TestOrganizationType, + TestUserType, +} from "../../helpers/userAndOrg"; + +import { convertToUTCDate } from "../../../src/utilities/recurrenceDatesUtil"; +import type { MutationCreateEventArgs } from "../../../src/types/generatedGraphQLTypes"; +import { RecurrenceRule } from "../../../src/models"; +import type { InterfaceRecurrenceRule } from "../../../src/models"; + +let MONGOOSE_INSTANCE: typeof mongoose; +let testOrganization: TestOrganizationType; +let testUser: TestUserType; + +beforeAll(async () => { + MONGOOSE_INSTANCE = await connect(); + await dropAllCollectionsFromDatabase(MONGOOSE_INSTANCE); + + [testUser, testOrganization] = await createTestUserAndOrganization(); +}); + +afterAll(async () => { + await dropAllCollectionsFromDatabase(MONGOOSE_INSTANCE); + await disconnect(MONGOOSE_INSTANCE); +}); + +describe("resolvers -> RecurrenceRule -> organization", () => { + it(`returns the organization object for parent recurrence rule`, async () => { + let startDate = new Date(); + startDate = convertToUTCDate(startDate); + const endDate = startDate; + + const args: MutationCreateEventArgs = { + data: { + organizationId: testOrganization?.id, + allDay: true, + description: "newDescription", + isPublic: false, + isRegisterable: false, + latitude: 1, + longitude: 1, + location: "newLocation", + recurring: true, + startDate, + endDate, + title: "newTitle", + }, + recurrenceRuleData: { + recurrenceStartDate: startDate, + frequency: "WEEKLY", + weekDays: ["MONDAY", "TUESDAY", "WEDNESDAY"], + count: 10, + }, + }; + + const context = { + userId: testUser?.id, + }; + const { createEvent: createEventResolver } = await import( + "../../../src/resolvers/Mutation/createEvent" + ); + + const createEventPayload = await createEventResolver?.({}, args, context); + + const recurrenceRule = await RecurrenceRule.findOne({ + _id: createEventPayload?.recurrenceRuleId, + }).lean(); + + const parent = recurrenceRule as InterfaceRecurrenceRule; + const organizationPayload = await organizationResolver?.(parent, {}, {}); + + expect(testOrganization?.toObject()).toEqual(organizationPayload); + }); +}); From e919df4dc3d3e4f67422e730511eea87ffb8a692 Mon Sep 17 00:00:00 2001 From: xoldd Date: Sat, 20 Apr 2024 03:42:19 +0530 Subject: [PATCH 03/16] added TalawaGraphQLError class (#2229) --- src/utilities/TalawaGraphQLError.ts | 197 ++++++++++++++++++++++++++++ 1 file changed, 197 insertions(+) create mode 100644 src/utilities/TalawaGraphQLError.ts diff --git a/src/utilities/TalawaGraphQLError.ts b/src/utilities/TalawaGraphQLError.ts new file mode 100644 index 0000000000..02d344da67 --- /dev/null +++ b/src/utilities/TalawaGraphQLError.ts @@ -0,0 +1,197 @@ +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); + } +} From 4649c62a01a5893fee5387d409f6c12ca20b45d0 Mon Sep 17 00:00:00 2001 From: Meetul Rathore Date: Sun, 21 Apr 2024 09:24:46 +0530 Subject: [PATCH 04/16] update recurring events sample data (#2239) --- sample_data/recurrenceRules.json | 400 +++++++++++++++---------------- 1 file changed, 200 insertions(+), 200 deletions(-) diff --git a/sample_data/recurrenceRules.json b/sample_data/recurrenceRules.json index be36e97137..20f38885fc 100644 --- a/sample_data/recurrenceRules.json +++ b/sample_data/recurrenceRules.json @@ -4,8 +4,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "660fdd562c1ef6c7db164414", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -20,8 +20,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "660fdf7d2c1ef6c7db1648c6", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -36,8 +36,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "660fdff42c1ef6c7db164ce9", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY"], "latestInstanceDate": "2025-12-29T00:00:00.000Z", @@ -52,8 +52,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "660fe05c2c1ef6c7db164dc6", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -68,8 +68,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "660fe0c12c1ef6c7db1651e9", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY"], "latestInstanceDate": "2025-12-29T00:00:00.000Z", @@ -84,8 +84,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "660fe1382c1ef6c7db1652c6", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU,WE,SU", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["TUESDAY", "WEDNESDAY", "SUNDAY"], "latestInstanceDate": "2025-12-31T00:00:00.000Z", @@ -100,8 +100,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "660fe1d02c1ef6c7db165545", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["WEDNESDAY"], "latestInstanceDate": "2025-12-31T00:00:00.000Z", @@ -116,8 +116,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "660fe22c2c1ef6c7db165622", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["THURSDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -132,8 +132,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "660fe28d2c1ef6c7db1656ff", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["THURSDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -148,8 +148,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "660fe3072c1ef6c7db1657dc", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=FR", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["FRIDAY"], "latestInstanceDate": "2025-12-26T00:00:00.000Z", @@ -164,8 +164,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "660fe38b2c1ef6c7db1658bb", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["SATURDAY"], "latestInstanceDate": "2025-12-27T00:00:00.000Z", @@ -180,8 +180,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "661180a772e598fc78258f30", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,WE", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY", "WEDNESDAY"], "latestInstanceDate": "2025-12-31T00:00:00.000Z", @@ -196,8 +196,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "6611810172e598fc78259120", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,WE", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY", "WEDNESDAY"], "latestInstanceDate": "2025-12-31T00:00:00.000Z", @@ -212,8 +212,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "6611810972e598fc782592cf", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,WE", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY", "WEDNESDAY"], "latestInstanceDate": "2025-12-31T00:00:00.000Z", @@ -228,8 +228,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "6611811072e598fc7825947e", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,WE", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY", "WEDNESDAY"], "latestInstanceDate": "2025-12-31T00:00:00.000Z", @@ -244,8 +244,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "661181cf72e598fc782596b3", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY"], "latestInstanceDate": "2025-12-29T00:00:00.000Z", @@ -260,8 +260,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "661181d572e598fc78259790", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY"], "latestInstanceDate": "2025-12-29T00:00:00.000Z", @@ -276,8 +276,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "661181dd72e598fc7825986d", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY"], "latestInstanceDate": "2025-12-29T00:00:00.000Z", @@ -292,8 +292,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "661181e172e598fc7825994a", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY"], "latestInstanceDate": "2025-12-29T00:00:00.000Z", @@ -308,8 +308,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "6611828e72e598fc78259a27", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY"], "latestInstanceDate": "2025-12-29T00:00:00.000Z", @@ -324,8 +324,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "6611829472e598fc78259b04", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY"], "latestInstanceDate": "2025-12-29T00:00:00.000Z", @@ -340,8 +340,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "6611829b72e598fc78259be1", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY"], "latestInstanceDate": "2025-12-29T00:00:00.000Z", @@ -356,8 +356,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "661182a072e598fc78259cbe", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY"], "latestInstanceDate": "2025-12-29T00:00:00.000Z", @@ -372,8 +372,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "661183cd72e598fc78259d9b", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU,TH", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["TUESDAY", "THURSDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -388,8 +388,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "661183d372e598fc78259f4a", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU,TH", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["TUESDAY", "THURSDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -404,8 +404,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "661183d872e598fc7825a0f9", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU,TH", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["TUESDAY", "THURSDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -420,8 +420,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "661183dc72e598fc7825a2a8", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU,TH", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["TUESDAY", "THURSDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -436,8 +436,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "6611843972e598fc7825a457", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["TUESDAY"], "latestInstanceDate": "2025-12-30T00:00:00.000Z", @@ -452,8 +452,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "6611843f72e598fc7825a534", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["TUESDAY"], "latestInstanceDate": "2025-12-30T00:00:00.000Z", @@ -468,8 +468,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "6611844372e598fc7825a611", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["TUESDAY"], "latestInstanceDate": "2025-12-30T00:00:00.000Z", @@ -484,8 +484,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "6611844872e598fc7825a6ee", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["TUESDAY"], "latestInstanceDate": "2025-12-30T00:00:00.000Z", @@ -500,8 +500,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "661184a272e598fc7825a7cb", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["TUESDAY"], "latestInstanceDate": "2025-12-30T00:00:00.000Z", @@ -516,8 +516,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "661184a672e598fc7825a8a8", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["TUESDAY"], "latestInstanceDate": "2025-12-30T00:00:00.000Z", @@ -532,8 +532,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "661184ab72e598fc7825a985", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["TUESDAY"], "latestInstanceDate": "2025-12-30T00:00:00.000Z", @@ -548,8 +548,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "661184ae72e598fc7825aa62", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["TUESDAY"], "latestInstanceDate": "2025-12-30T00:00:00.000Z", @@ -564,8 +564,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "661184f972e598fc7825ab3f", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["WEDNESDAY"], "latestInstanceDate": "2025-12-31T00:00:00.000Z", @@ -580,8 +580,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "661184fd72e598fc7825ac1c", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["WEDNESDAY"], "latestInstanceDate": "2025-12-31T00:00:00.000Z", @@ -596,8 +596,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "6611850172e598fc7825acf9", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["WEDNESDAY"], "latestInstanceDate": "2025-12-31T00:00:00.000Z", @@ -612,8 +612,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "6611850672e598fc7825add6", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["WEDNESDAY"], "latestInstanceDate": "2025-12-31T00:00:00.000Z", @@ -628,8 +628,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "6611855d72e598fc7825aeb3", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["WEDNESDAY"], "latestInstanceDate": "2025-12-31T00:00:00.000Z", @@ -644,8 +644,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "6611856272e598fc7825af90", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["WEDNESDAY"], "latestInstanceDate": "2025-12-31T00:00:00.000Z", @@ -660,8 +660,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "6611856772e598fc7825b06d", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["WEDNESDAY"], "latestInstanceDate": "2025-12-31T00:00:00.000Z", @@ -676,8 +676,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "6611856c72e598fc7825b14a", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["WEDNESDAY"], "latestInstanceDate": "2025-12-31T00:00:00.000Z", @@ -692,8 +692,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "661185bf72e598fc7825b227", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["THURSDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -708,8 +708,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "661185c372e598fc7825b304", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["THURSDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -724,8 +724,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "661185c772e598fc7825b3e1", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["THURSDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -740,8 +740,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "661185cb72e598fc7825b4be", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["THURSDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -756,8 +756,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "6611861572e598fc7825b59b", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["THURSDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -772,8 +772,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "6611861972e598fc7825b678", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["THURSDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -788,8 +788,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "6611861c72e598fc7825b755", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["THURSDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -804,8 +804,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "6611862172e598fc7825b832", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["THURSDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -820,8 +820,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "6611867f72e598fc7825b90f", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=FR", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["FRIDAY"], "latestInstanceDate": "2025-12-26T00:00:00.000Z", @@ -836,8 +836,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "6611868372e598fc7825b9ea", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=FR", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["FRIDAY"], "latestInstanceDate": "2025-12-26T00:00:00.000Z", @@ -852,8 +852,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "6611868772e598fc7825bac5", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=FR", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["FRIDAY"], "latestInstanceDate": "2025-12-26T00:00:00.000Z", @@ -868,8 +868,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "6611868a72e598fc7825bba0", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=FR", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["FRIDAY"], "latestInstanceDate": "2025-12-26T00:00:00.000Z", @@ -884,8 +884,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "661186db72e598fc7825bc7b", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["SATURDAY"], "latestInstanceDate": "2025-12-27T00:00:00.000Z", @@ -900,8 +900,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "661186e072e598fc7825bd56", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["SATURDAY"], "latestInstanceDate": "2025-12-27T00:00:00.000Z", @@ -916,8 +916,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "661186e372e598fc7825be31", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["SATURDAY"], "latestInstanceDate": "2025-12-27T00:00:00.000Z", @@ -932,8 +932,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "661186e772e598fc7825bf0c", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["SATURDAY"], "latestInstanceDate": "2025-12-27T00:00:00.000Z", @@ -948,8 +948,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "6611872e72e598fc7825bfeb", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["SATURDAY"], "latestInstanceDate": "2025-12-27T00:00:00.000Z", @@ -964,8 +964,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "6611873372e598fc7825c0c6", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["SATURDAY"], "latestInstanceDate": "2025-12-27T00:00:00.000Z", @@ -980,8 +980,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "6611873972e598fc7825c1a1", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["SATURDAY"], "latestInstanceDate": "2025-12-27T00:00:00.000Z", @@ -996,8 +996,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "6611873f72e598fc7825c27c", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["SATURDAY"], "latestInstanceDate": "2025-12-27T00:00:00.000Z", @@ -1012,8 +1012,8 @@ "organizationId": "6437904485008f171cf29924", "baseRecurringEventId": "661187cc72e598fc7825c357", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SU", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["SUNDAY"], "latestInstanceDate": "2025-12-28T00:00:00.000Z", @@ -1028,8 +1028,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "661187d072e598fc7825c432", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SU", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["SUNDAY"], "latestInstanceDate": "2025-12-28T00:00:00.000Z", @@ -1044,8 +1044,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "661187d672e598fc7825c50d", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SU", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["SUNDAY"], "latestInstanceDate": "2025-12-28T00:00:00.000Z", @@ -1060,8 +1060,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "661187d972e598fc7825c5e8", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SU", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["SUNDAY"], "latestInstanceDate": "2025-12-28T00:00:00.000Z", @@ -1076,8 +1076,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "66118bb672e598fc7825c82d", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -1092,8 +1092,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "66118bbe72e598fc7825cc50", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -1108,8 +1108,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "66118bc372e598fc7825d073", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -1124,8 +1124,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "66118c0872e598fc7825d496", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -1140,8 +1140,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "66118c0f72e598fc7825d8b9", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -1156,8 +1156,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "66118c1472e598fc7825dcdc", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -1172,8 +1172,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "66118c5b72e598fc7825e0ff", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY"], "latestInstanceDate": "2025-12-29T00:00:00.000Z", @@ -1188,8 +1188,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "66118c6372e598fc7825e1dc", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY"], "latestInstanceDate": "2025-12-29T00:00:00.000Z", @@ -1204,8 +1204,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "66118c6972e598fc7825e2b9", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY"], "latestInstanceDate": "2025-12-29T00:00:00.000Z", @@ -1220,8 +1220,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "66118cda72e598fc7825e396", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -1236,8 +1236,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "66118ce072e598fc7825e7b9", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -1252,8 +1252,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "66118ce572e598fc7825ebdc", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU,WE,TH,FR", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -1268,8 +1268,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "66118d7c72e598fc7825efff", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY"], "latestInstanceDate": "2025-12-29T00:00:00.000Z", @@ -1284,8 +1284,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "66118d8072e598fc7825f0dc", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY"], "latestInstanceDate": "2025-12-29T00:00:00.000Z", @@ -1300,8 +1300,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "66118d8472e598fc7825f1b9", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["MONDAY"], "latestInstanceDate": "2025-12-29T00:00:00.000Z", @@ -1316,8 +1316,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "66118df672e598fc7825f296", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU,WE,SU", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["TUESDAY", "WEDNESDAY", "SUNDAY"], "latestInstanceDate": "2025-12-31T00:00:00.000Z", @@ -1332,8 +1332,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "66118dfc72e598fc7825f515", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU,WE,SU", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["TUESDAY", "WEDNESDAY", "SUNDAY"], "latestInstanceDate": "2025-12-31T00:00:00.000Z", @@ -1348,8 +1348,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "66118e0272e598fc7825f794", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TU,WE,SU", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["TUESDAY", "WEDNESDAY", "SUNDAY"], "latestInstanceDate": "2025-12-31T00:00:00.000Z", @@ -1364,8 +1364,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "66118ea572e598fc7825fa2f", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["WEDNESDAY"], "latestInstanceDate": "2025-12-31T00:00:00.000Z", @@ -1380,8 +1380,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "66118eab72e598fc7825fb0c", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["WEDNESDAY"], "latestInstanceDate": "2025-12-31T00:00:00.000Z", @@ -1396,8 +1396,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "66118eb472e598fc7825fbe9", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=WE", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["WEDNESDAY"], "latestInstanceDate": "2025-12-31T00:00:00.000Z", @@ -1412,8 +1412,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "66118f0d72e598fc7825fcc6", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["THURSDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -1428,8 +1428,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "66118f1772e598fc7825fda3", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["THURSDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -1444,8 +1444,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "66118f1d72e598fc7825fe80", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["THURSDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -1460,8 +1460,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "66118f8272e598fc7825ff5d", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["THURSDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -1476,8 +1476,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "66118f8772e598fc7826003a", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["THURSDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -1492,8 +1492,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "66118f8b72e598fc78260117", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=TH", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["THURSDAY"], "latestInstanceDate": "2026-01-01T00:00:00.000Z", @@ -1508,8 +1508,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "6611903e72e598fc78260256", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=FR", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["FRIDAY"], "latestInstanceDate": "2025-12-26T00:00:00.000Z", @@ -1524,8 +1524,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "6611904472e598fc78260331", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=FR", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["FRIDAY"], "latestInstanceDate": "2025-12-26T00:00:00.000Z", @@ -1540,8 +1540,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "6611904872e598fc7826040c", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=FR", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["FRIDAY"], "latestInstanceDate": "2025-12-26T00:00:00.000Z", @@ -1556,8 +1556,8 @@ "organizationId": "6537904485008f171cf29924", "baseRecurringEventId": "661190a372e598fc782604e7", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["SATURDAY"], "latestInstanceDate": "2025-12-27T00:00:00.000Z", @@ -1572,8 +1572,8 @@ "organizationId": "6637904485008f171cf29924", "baseRecurringEventId": "661190a872e598fc782605c2", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["SATURDAY"], "latestInstanceDate": "2025-12-27T00:00:00.000Z", @@ -1588,8 +1588,8 @@ "organizationId": "6737904485008f171cf29924", "baseRecurringEventId": "661190ac72e598fc7826069d", "recurrenceRuleString": "DTSTART:20240101T000000Z\nRRULE:FREQ=WEEKLY;INTERVAL=1;BYDAY=SA", - "startDate": "2024-01-01T00:00:00.000Z", - "endDate": null, + "recurrenceStartDate": "2024-01-01T00:00:00.000Z", + "recurrenceEndDate": null, "frequency": "WEEKLY", "weekDays": ["SATURDAY"], "latestInstanceDate": "2025-12-27T00:00:00.000Z", From bba21f4d4a878804f18614c0d6ca4aa505dccc81 Mon Sep 17 00:00:00 2001 From: Akhilender Bongirwar <112749383+akhilender-bongirwar@users.noreply.github.com> Date: Sun, 21 Apr 2024 12:32:15 +0530 Subject: [PATCH 05/16] feat: Enhance authorization rules for createPost and updatePost mutations (#2225) * feat: Enhance authorization rules for createPost and updatePost mutations - Expanded authorization rules for createPost mutation to include superadmins, allowing them to create posts regardless of organization membership. - Granted permissions to both superadmins and organization admins for updatePost mutation, enabling them to update posts associated with their respective organizations. - Ensured user cache is also implemented. - Covered code with tests and ensured no other functionality got affected. Signed-off-by: Akhilender * fix: fixing tests - Running the workflow again since all the tests are passing in local. Signed-off-by: Akhilender --------- Signed-off-by: Akhilender --- src/resolvers/Mutation/createPost.ts | 3 +- src/resolvers/Mutation/updatePost.ts | 66 +++++++++++++++- tests/resolvers/Mutation/createPost.spec.ts | 2 +- tests/resolvers/Mutation/updatePost.spec.ts | 85 +++++++++++++++++++-- 4 files changed, 144 insertions(+), 12 deletions(-) diff --git a/src/resolvers/Mutation/createPost.ts b/src/resolvers/Mutation/createPost.ts index cef2083802..658e093f23 100644 --- a/src/resolvers/Mutation/createPost.ts +++ b/src/resolvers/Mutation/createPost.ts @@ -111,12 +111,13 @@ export const createPost: MutationResolvers["createPost"] = async ( ); } + const isSuperAdmin = currentUserAppProfile.isSuperAdmin; const currentUserIsOrganizationMember = organization.members.some( (memberId) => new Types.ObjectId(memberId?.toString()).equals(context.userId), ); - if (!currentUserIsOrganizationMember) { + if (!currentUserIsOrganizationMember && !isSuperAdmin) { throw new errors.NotFoundError( requestContext.translate(USER_NOT_MEMBER_FOR_ORGANIZATION.MESSAGE), USER_NOT_MEMBER_FOR_ORGANIZATION.CODE, diff --git a/src/resolvers/Mutation/updatePost.ts b/src/resolvers/Mutation/updatePost.ts index f37e4dcbc7..3229fe4357 100644 --- a/src/resolvers/Mutation/updatePost.ts +++ b/src/resolvers/Mutation/updatePost.ts @@ -1,25 +1,76 @@ +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 { InterfacePost } from "../../models"; -import { Post } from "../../models"; +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"; 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]); @@ -45,9 +96,18 @@ export const updatePost: MutationResolvers["updatePost"] = async ( } 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 === false) { + if ( + !currentUserIsPostCreator && + !isAdminOfPostOrganization && + !isSuperAdmin + ) { throw new errors.UnauthorizedError( requestContext.translate(USER_NOT_AUTHORIZED_ERROR.MESSAGE), USER_NOT_AUTHORIZED_ERROR.CODE, diff --git a/tests/resolvers/Mutation/createPost.spec.ts b/tests/resolvers/Mutation/createPost.spec.ts index 6b2381f797..6d7e154e6e 100644 --- a/tests/resolvers/Mutation/createPost.spec.ts +++ b/tests/resolvers/Mutation/createPost.spec.ts @@ -209,7 +209,7 @@ describe("resolvers -> Mutation -> createPost", () => { } }); - it("throws error if user is not member of the organization", async () => { + it("throws error if user is not member of the organization and is not superadmin", async () => { const organizationWithNoMember = await createTestUserAndOrganization(false); const { requestContext } = await import("../../../src/libraries"); const spy = vi diff --git a/tests/resolvers/Mutation/updatePost.spec.ts b/tests/resolvers/Mutation/updatePost.spec.ts index ab7cdba24c..c57152dc7f 100644 --- a/tests/resolvers/Mutation/updatePost.spec.ts +++ b/tests/resolvers/Mutation/updatePost.spec.ts @@ -1,6 +1,6 @@ import "dotenv/config"; import { Types } from "mongoose"; -import { Post } from "../../../src/models"; +import { AppUserProfile, Post } from "../../../src/models"; import type { MutationUpdatePostArgs } from "../../../src/types/generatedGraphQLTypes"; import { connect, disconnect } from "../../../src/db"; import { updatePost as updatePostResolver } from "../../../src/resolvers/Mutation/updatePost"; @@ -8,12 +8,16 @@ import { LENGTH_VALIDATION_ERROR, POST_NOT_FOUND_ERROR, USER_NOT_AUTHORIZED_ERROR, + USER_NOT_FOUND_ERROR, } from "../../../src/constants"; import { beforeEach, afterEach, describe, it, expect, vi } from "vitest"; -import type { - TestOrganizationType, - TestUserType, +import { + createTestOrganizationWithAdmin, + createTestUser, + type TestOrganizationType, + type TestUserType, } from "../../helpers/userAndOrg"; + import type { TestPostType } from "../../helpers/posts"; import { createTestPost, createTestSinglePost } from "../../helpers/posts"; @@ -40,6 +44,32 @@ afterEach(async () => { }); describe("resolvers -> Mutation -> updatePost", () => { + it(`throws NotFoundError if no user exists with _id === context.userId`, async () => { + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementationOnce((message) => `Translated ${message}`); + try { + const args: MutationUpdatePostArgs = { + id: testPost?._id.toString() || "", + data: { + title: "newTitle", + }, + }; + + const context = { + userId: new Types.ObjectId().toString(), + }; + + await updatePostResolver?.({}, args, context); + } catch (error: unknown) { + expect(spy).toBeCalledWith(USER_NOT_FOUND_ERROR.MESSAGE); + expect((error as Error).message).toEqual( + `Translated ${USER_NOT_FOUND_ERROR.MESSAGE}`, + ); + } + }); + it(`throws NotFoundError if no post exists with _id === args.id`, async () => { try { const args: MutationUpdatePostArgs = { @@ -58,17 +88,28 @@ describe("resolvers -> Mutation -> updatePost", () => { it(`throws UnauthorizedError as current user with _id === context.userId is not an creator of post with _id === args.id`, async () => { + const testUser1 = await createTestUser(); + const testOrg1 = await createTestOrganizationWithAdmin( + testUser1?._id, + false, + false, + ); + const testPost1 = await createTestSinglePost(testUser1?._id, testOrg1?._id); + try { const args: MutationUpdatePostArgs = { - id: testPost?._id.toString() ?? "", + id: testPost1?._id.toString() ?? "", + data: { + title: "newTitle", + }, }; const context = { - userId: testUser?._id, + userId: testUser1?._id, }; await Post.updateOne( - { _id: testPost?._id }, + { _id: testPost1?._id }, { $set: { creatorId: new Types.ObjectId().toString() } }, ); @@ -268,4 +309,34 @@ describe("resolvers -> Mutation -> updatePost", () => { ); } }); + + it("throws error if AppUserProfile is not found", async () => { + const userWithoutProfileId = await createTestUser(); + await AppUserProfile.findByIdAndDelete( + userWithoutProfileId?.appUserProfileId, + ); + const { requestContext } = await import("../../../src/libraries"); + const spy = vi + .spyOn(requestContext, "translate") + .mockImplementationOnce((message) => `Translated ${message}`); + try { + const args: MutationUpdatePostArgs = { + id: testPost?._id.toString() || "", + data: { + title: "newTitle", + }, + }; + + const context = { + userId: userWithoutProfileId?._id, + }; + + await updatePostResolver?.({}, args, context); + } catch (error: unknown) { + expect(spy).toBeCalledWith(USER_NOT_AUTHORIZED_ERROR.MESSAGE); + expect((error as Error).message).toEqual( + `Translated ${USER_NOT_AUTHORIZED_ERROR.MESSAGE}`, + ); + } + }); }); From 0c42b7305a34b6840c1545894ffa11d32f068cc0 Mon Sep 17 00:00:00 2001 From: Vamshi Maskuri <117595548+varshith257@users.noreply.github.com> Date: Sun, 21 Apr 2024 21:29:05 +0530 Subject: [PATCH 06/16] Add Support for Production Environment - Part 2 (#2115) * updated to fix object id * fix lint * fix test * Update removeUserFromUserFamily.ts * Update unblockUser.ts * Update tests * fix lint --------- Co-authored-by: Vamshi Maskuri --- src/resolvers/Mutation/addEventAttendee.ts | 4 ++-- src/resolvers/Mutation/blockUser.ts | 7 ++++--- src/resolvers/Mutation/checkIn.ts | 8 +++++--- src/resolvers/Mutation/createActionItem.ts | 8 ++++---- src/resolvers/Mutation/createAdmin.ts | 6 +++--- src/resolvers/Mutation/createAgendaItem.ts | 6 +++--- src/resolvers/Mutation/createMember.ts | 6 +++--- src/resolvers/Mutation/createPost.ts | 6 +++--- src/resolvers/Mutation/inviteEventAttendee.ts | 4 ++-- .../Mutation/joinPublicOrganization.ts | 7 ++++--- src/resolvers/Mutation/leaveOrganization.ts | 6 +++--- .../Mutation/registerEventAttendee.ts | 4 ++-- src/resolvers/Mutation/removeActionItem.ts | 6 +++--- src/resolvers/Mutation/removeAdmin.ts | 4 ++-- src/resolvers/Mutation/removeMember.ts | 12 +++++++---- .../Mutation/removeUserFromUserFamily.ts | 12 +++++++---- .../Mutation/sendMembershipRequest.ts | 6 +++--- src/resolvers/Mutation/togglePostPin.ts | 8 +++++--- src/resolvers/Mutation/unblockUser.ts | 7 ++++--- src/resolvers/Mutation/updateActionItem.ts | 16 ++++++++------- src/resolvers/Mutation/updateEvent.ts | 14 +++++++++---- .../Mutation/updateUserRoleInOrganization.ts | 16 ++++++++++----- .../findCommentsByPostIdInCache.ts | 12 +++++------ .../CommentCache/findCommentsInCache.ts | 10 +++++----- src/services/EventCache/findEventInCache.ts | 10 +++++----- .../findOrganizationsInCache.ts | 20 +++++++++---------- src/services/PostCache/findPostsInCache.ts | 10 +++++----- src/utilities/adminCheck.ts | 7 +++++-- src/utilities/userFamilyAdminCheck.ts | 7 +++++-- 29 files changed, 142 insertions(+), 107 deletions(-) diff --git a/src/resolvers/Mutation/addEventAttendee.ts b/src/resolvers/Mutation/addEventAttendee.ts index 437d558260..816635f522 100644 --- a/src/resolvers/Mutation/addEventAttendee.ts +++ b/src/resolvers/Mutation/addEventAttendee.ts @@ -1,4 +1,4 @@ -import { Types } from "mongoose"; +import mongoose from "mongoose"; import { EVENT_NOT_FOUND_ERROR, USER_ALREADY_REGISTERED_FOR_EVENT, @@ -93,7 +93,7 @@ export const addEventAttendee: MutationResolvers["addEventAttendee"] = async ( const isUserEventAdmin = event.admins.some( (admin) => admin === context.userID || - new Types.ObjectId(admin).equals(context.userId), + new mongoose.Types.ObjectId(admin.toString()).equals(context.userId), ); if (!isUserEventAdmin && !currentUserAppProfile.isSuperAdmin) { diff --git a/src/resolvers/Mutation/blockUser.ts b/src/resolvers/Mutation/blockUser.ts index 51549d7810..b23f6c14d3 100644 --- a/src/resolvers/Mutation/blockUser.ts +++ b/src/resolvers/Mutation/blockUser.ts @@ -1,4 +1,4 @@ -import { Types } from "mongoose"; +import mongoose from "mongoose"; import { MEMBER_NOT_FOUND_ERROR, ORGANIZATION_NOT_FOUND_ERROR, @@ -72,7 +72,8 @@ export const blockUser: MutationResolvers["blockUser"] = async ( // Check whether the user - args.userId is a member of the organization before blocking const userIsOrganizationMember = organization?.members.some( (member) => - member === args.userId || new Types.ObjectId(member).equals(args.userId), + member === args.userId || + new mongoose.Types.ObjectId(member.toString()).equals(args.userId), ); if (!userIsOrganizationMember) { @@ -95,7 +96,7 @@ export const blockUser: MutationResolvers["blockUser"] = async ( await adminCheck(context.userId, organization); const userIsBlocked = organization.blockedUsers.some((blockedUser) => - new Types.ObjectId(blockedUser).equals(args.userId), + new mongoose.Types.ObjectId(blockedUser.toString()).equals(args.userId), ); // Checks whether user with _id === args.userId is already blocked from organization. diff --git a/src/resolvers/Mutation/checkIn.ts b/src/resolvers/Mutation/checkIn.ts index c3387713ff..5f840ebad6 100644 --- a/src/resolvers/Mutation/checkIn.ts +++ b/src/resolvers/Mutation/checkIn.ts @@ -24,7 +24,7 @@ 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. * @@ -115,8 +115,10 @@ export const checkIn: MutationResolvers["checkIn"] = async ( ); } - const isUserEventAdmin = currentEvent.admins.some( - (admin) => admin.toString() === context.userId.toString(), + const isUserEventAdmin = currentEvent.admins.some((admin) => + new mongoose.Types.ObjectId(admin.toString()).equals( + context.userId.toString(), + ), ); if (!isUserEventAdmin && currentUserAppProfile.isSuperAdmin === false) { diff --git a/src/resolvers/Mutation/createActionItem.ts b/src/resolvers/Mutation/createActionItem.ts index 6663159f29..dc93a6941c 100644 --- a/src/resolvers/Mutation/createActionItem.ts +++ b/src/resolvers/Mutation/createActionItem.ts @@ -1,4 +1,4 @@ -import { Types } from "mongoose"; +import mongoose from "mongoose"; import { ACTION_ITEM_CATEGORY_IS_DISABLED, ACTION_ITEM_CATEGORY_NOT_FOUND_ERROR, @@ -131,7 +131,7 @@ export const createActionItem: MutationResolvers["createActionItem"] = async ( asigneeIsOrganizationMember = assignee.joinedOrganizations.some( (organizationId) => organizationId === actionItemCategory.organizationId || - new Types.ObjectId(organizationId).equals( + new mongoose.Types.ObjectId(organizationId.toString()).equals( actionItemCategory.organizationId, ), ); @@ -177,7 +177,7 @@ export const createActionItem: MutationResolvers["createActionItem"] = async ( currentUserIsEventAdmin = currEvent.admins.some( (admin) => admin === context.userID || - new Types.ObjectId(admin).equals(context.userId), + new mongoose.Types.ObjectId(admin.toString()).equals(context.userId), ); } @@ -186,7 +186,7 @@ export const createActionItem: MutationResolvers["createActionItem"] = async ( (organizationId) => (organizationId && organizationId === actionItemCategory.organizationId) || - new Types.ObjectId(organizationId?.toString()).equals( + new mongoose.Types.ObjectId(organizationId?.toString()).equals( actionItemCategory.organizationId, ), ); diff --git a/src/resolvers/Mutation/createAdmin.ts b/src/resolvers/Mutation/createAdmin.ts index a34774e4bd..4b0b3e1bf1 100644 --- a/src/resolvers/Mutation/createAdmin.ts +++ b/src/resolvers/Mutation/createAdmin.ts @@ -1,4 +1,4 @@ -import { Types } from "mongoose"; +import mongoose from "mongoose"; import { ORGANIZATION_MEMBER_NOT_FOUND_ERROR, ORGANIZATION_NOT_FOUND_ERROR, @@ -149,7 +149,7 @@ export const createAdmin: MutationResolvers["createAdmin"] = async ( // } const userIsOrganizationMember = organization.members.some((member) => - new Types.ObjectId(member).equals(args.data.userId), + new mongoose.Types.ObjectId(member.toString()).equals(args.data.userId), ); // Checks whether user with _id === args.data.userId is not a member of organization. @@ -173,7 +173,7 @@ export const createAdmin: MutationResolvers["createAdmin"] = async ( } const userIsOrganizationAdmin = organization.admins.some((admin) => - new Types.ObjectId(admin).equals(args.data.userId), + new mongoose.Types.ObjectId(admin.toString()).equals(args.data.userId), ); // Checks whether user with _id === args.data.userId is already an admin of organization. diff --git a/src/resolvers/Mutation/createAgendaItem.ts b/src/resolvers/Mutation/createAgendaItem.ts index 5d2cdb210e..342a4293ee 100644 --- a/src/resolvers/Mutation/createAgendaItem.ts +++ b/src/resolvers/Mutation/createAgendaItem.ts @@ -1,4 +1,4 @@ -import { Types } from "mongoose"; +import mongoose from "mongoose"; import { EVENT_NOT_FOUND_ERROR, ORGANIZATION_NOT_FOUND_ERROR, @@ -139,7 +139,7 @@ export const createAgendaItem: MutationResolvers["createAgendaItem"] = async ( currentUserIsEventAdmin = currEvent.admins.some( (admin) => admin === context.userID || - new Types.ObjectId(admin).equals(context.userId), + new mongoose.Types.ObjectId(admin.toString()).equals(context.userId), ); } @@ -148,7 +148,7 @@ export const createAgendaItem: MutationResolvers["createAgendaItem"] = async ( (organizationId) => (organizationId && organizationId.toString() === args.input.organizationId.toString()) || - new Types.ObjectId(organizationId?.toString()).equals( + new mongoose.Types.ObjectId(organizationId?.toString()).equals( args.input.organizationId, ), ); diff --git a/src/resolvers/Mutation/createMember.ts b/src/resolvers/Mutation/createMember.ts index b4bbed046f..c492faf56b 100644 --- a/src/resolvers/Mutation/createMember.ts +++ b/src/resolvers/Mutation/createMember.ts @@ -1,4 +1,4 @@ -import { Types } from "mongoose"; +import mongoose from "mongoose"; import { MEMBER_NOT_FOUND_ERROR, ORGANIZATION_NOT_FOUND_ERROR, @@ -136,8 +136,8 @@ export const createMember: MutationResolvers["createMember"] = async ( } const userIsOrganizationAdmin = organization.admins.some( (admin) => - admin === currentUser?._id || - new Types.ObjectId(admin).equals(currentUser?._id), + admin === currentUser._id || + new mongoose.Types.ObjectId(admin.toString()).equals(currentUser._id), ); if (!userIsOrganizationAdmin && !currentUserAppProfile.isSuperAdmin) { return { diff --git a/src/resolvers/Mutation/createPost.ts b/src/resolvers/Mutation/createPost.ts index 658e093f23..21e7ef611f 100644 --- a/src/resolvers/Mutation/createPost.ts +++ b/src/resolvers/Mutation/createPost.ts @@ -1,4 +1,4 @@ -import { Types } from "mongoose"; +import mongoose from "mongoose"; import { LENGTH_VALIDATION_ERROR, ORGANIZATION_NOT_FOUND_ERROR, @@ -114,7 +114,7 @@ export const createPost: MutationResolvers["createPost"] = async ( const isSuperAdmin = currentUserAppProfile.isSuperAdmin; const currentUserIsOrganizationMember = organization.members.some( (memberId) => - new Types.ObjectId(memberId?.toString()).equals(context.userId), + new mongoose.Types.ObjectId(memberId?.toString()).equals(context.userId), ); if (!currentUserIsOrganizationMember && !isSuperAdmin) { @@ -178,7 +178,7 @@ export const createPost: MutationResolvers["createPost"] = async ( // Check if the user has privileges to pin the post const currentUserIsOrganizationAdmin = currentUserAppProfile.adminFor.some( (organizationId) => - new Types.ObjectId(organizationId?.toString()).equals( + new mongoose.Types.ObjectId(organizationId?.toString()).equals( args.data.organizationId, ), ); diff --git a/src/resolvers/Mutation/inviteEventAttendee.ts b/src/resolvers/Mutation/inviteEventAttendee.ts index 94dd020528..0679d324ac 100644 --- a/src/resolvers/Mutation/inviteEventAttendee.ts +++ b/src/resolvers/Mutation/inviteEventAttendee.ts @@ -15,7 +15,7 @@ import type { import { User, Event, EventAttendee, AppUserProfile } from "../../models"; import { findEventsInCache } from "../../services/EventCache/findEventInCache"; import { cacheEvents } from "../../services/EventCache/cacheEvents"; -import { Types } from "mongoose"; +import mongoose from "mongoose"; import { findUserInCache } from "../../services/UserCache/findUserInCache"; import { cacheUsers } from "../../services/UserCache/cacheUser"; import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; @@ -107,7 +107,7 @@ export const inviteEventAttendee: MutationResolvers["inviteEventAttendee"] = const isUserEventAdmin = event.admins.some( (admin) => admin === context.userID || - new Types.ObjectId(admin).equals(context.userId), + new mongoose.Types.ObjectId(admin.toString()).equals(context.userId), ); if (!isUserEventAdmin && !currentUserAppProfile.isSuperAdmin) { diff --git a/src/resolvers/Mutation/joinPublicOrganization.ts b/src/resolvers/Mutation/joinPublicOrganization.ts index 7837d15256..32ffc60125 100644 --- a/src/resolvers/Mutation/joinPublicOrganization.ts +++ b/src/resolvers/Mutation/joinPublicOrganization.ts @@ -1,4 +1,4 @@ -import { Types } from "mongoose"; +import mongoose from "mongoose"; import { ORGANIZATION_NOT_FOUND_ERROR, USER_ALREADY_MEMBER_ERROR, @@ -72,7 +72,8 @@ export const joinPublicOrganization: MutationResolvers["joinPublicOrganization"] } const currentUserIsOrganizationMember = organization.members.some( - (member) => new Types.ObjectId(member).equals(context.userId), + (member) => + new mongoose.Types.ObjectId(member.toString()).equals(context.userId), ); // Checks whether currentUser with _id === context.userId is already a member of organzation. @@ -89,7 +90,7 @@ export const joinPublicOrganization: MutationResolvers["joinPublicOrganization"] if ( user !== null && organization.blockedUsers.some((blockedUser) => - new Types.ObjectId(blockedUser).equals(user._id), + new mongoose.Types.ObjectId(blockedUser.toString()).equals(user._id), ) ) { throw new errors.UnauthorizedError( diff --git a/src/resolvers/Mutation/leaveOrganization.ts b/src/resolvers/Mutation/leaveOrganization.ts index c907a0959d..5114cdeb33 100644 --- a/src/resolvers/Mutation/leaveOrganization.ts +++ b/src/resolvers/Mutation/leaveOrganization.ts @@ -1,5 +1,5 @@ import type { UpdateQuery } from "mongoose"; -import { Types } from "mongoose"; +import mongoose from "mongoose"; import { MEMBER_NOT_FOUND_ERROR, ORGANIZATION_NOT_FOUND_ERROR, @@ -103,7 +103,7 @@ export const leaveOrganization: MutationResolvers["leaveOrganization"] = async ( } const currentUserIsOrganizationMember = organization.members.some((member) => - new Types.ObjectId(member).equals(currentUser?._id), + new mongoose.Types.ObjectId(member.toString()).equals(currentUser?._id), ); // Checks whether currentUser is not a member of organzation. @@ -115,7 +115,7 @@ export const leaveOrganization: MutationResolvers["leaveOrganization"] = async ( ); } const currentUserIsOrgAdmin = organization.admins.some((admin) => - new Types.ObjectId(admin).equals(currentUser?._id), + new mongoose.Types.ObjectId(admin.toString()).equals(currentUser._id), ); // Removes currentUser._id from admins and members lists of organzation's document. diff --git a/src/resolvers/Mutation/registerEventAttendee.ts b/src/resolvers/Mutation/registerEventAttendee.ts index 2b2956d908..28a2d6b39f 100644 --- a/src/resolvers/Mutation/registerEventAttendee.ts +++ b/src/resolvers/Mutation/registerEventAttendee.ts @@ -14,7 +14,7 @@ import type { import { User, Event, EventAttendee, AppUserProfile } from "../../models"; import { findEventsInCache } from "../../services/EventCache/findEventInCache"; import { cacheEvents } from "../../services/EventCache/cacheEvents"; -import { Types } from "mongoose"; +import mongoose from "mongoose"; import { findUserInCache } from "../../services/UserCache/findUserInCache"; import { cacheUsers } from "../../services/UserCache/cacheUser"; import { findAppUserProfileCache } from "../../services/AppUserProfileCache/findAppUserProfileCache"; @@ -104,7 +104,7 @@ export const registerEventAttendee: MutationResolvers["registerEventAttendee"] = const isUserEventAdmin = event.admins.some( (admin) => admin === context.userID || - new Types.ObjectId(admin).equals(context.userId), + new mongoose.Types.ObjectId(admin.toString()).equals(context.userId), ); if (!isUserEventAdmin && currentUserAppProfile.isSuperAdmin === false) { diff --git a/src/resolvers/Mutation/removeActionItem.ts b/src/resolvers/Mutation/removeActionItem.ts index b1fb0688de..30879154dd 100644 --- a/src/resolvers/Mutation/removeActionItem.ts +++ b/src/resolvers/Mutation/removeActionItem.ts @@ -1,4 +1,4 @@ -import { Types } from "mongoose"; +import mongoose from "mongoose"; import { ACTION_ITEM_NOT_FOUND_ERROR, EVENT_NOT_FOUND_ERROR, @@ -97,7 +97,7 @@ export const removeActionItem: MutationResolvers["removeActionItem"] = async ( const currentUserIsOrgAdmin = currentUserAppProfile.adminFor.some( (ogranizationId) => ogranizationId === actionItem.actionItemCategoryId.organizationId || - new Types.ObjectId(ogranizationId?.toString()).equals( + new mongoose.Types.ObjectId(ogranizationId?.toString()).equals( actionItem.actionItemCategoryId.organizationId, ), ); @@ -134,7 +134,7 @@ export const removeActionItem: MutationResolvers["removeActionItem"] = async ( currentUserIsEventAdmin = currEvent.admins.some( (admin) => admin === context.userID || - new Types.ObjectId(admin).equals(context.userId), + new mongoose.Types.ObjectId(admin.toString()).equals(context.userId), ); } diff --git a/src/resolvers/Mutation/removeAdmin.ts b/src/resolvers/Mutation/removeAdmin.ts index 635e63a1f2..0615517da3 100644 --- a/src/resolvers/Mutation/removeAdmin.ts +++ b/src/resolvers/Mutation/removeAdmin.ts @@ -1,4 +1,4 @@ -import { Types } from "mongoose"; +import mongoose from "mongoose"; import { ORGANIZATION_NOT_FOUND_ERROR, USER_NOT_AUTHORIZED_ERROR, @@ -129,7 +129,7 @@ export const removeAdmin: MutationResolvers["removeAdmin"] = async ( } // Checks whether user is an admin of the organization. const userIsOrganizationAdmin = organization.admins.some((admin) => - new Types.ObjectId(admin).equals(user._id), + new mongoose.Types.ObjectId(admin.toString()).equals(user._id), ); if (!userIsOrganizationAdmin) { diff --git a/src/resolvers/Mutation/removeMember.ts b/src/resolvers/Mutation/removeMember.ts index f9fee48631..997ef17cc2 100644 --- a/src/resolvers/Mutation/removeMember.ts +++ b/src/resolvers/Mutation/removeMember.ts @@ -1,4 +1,4 @@ -import { Types } from "mongoose"; +import mongoose from "mongoose"; import { ADMIN_REMOVING_ADMIN, ADMIN_REMOVING_CREATOR, @@ -76,7 +76,7 @@ export const removeMember: MutationResolvers["removeMember"] = async ( } const userIsOrganizationMember = organization?.members.some((member) => - new Types.ObjectId(member).equals(user._id), + new mongoose.Types.ObjectId(member.toString()).equals(user._id), ); if (!userIsOrganizationMember) { @@ -97,7 +97,7 @@ export const removeMember: MutationResolvers["removeMember"] = async ( } const userIsOrganizationAdmin = organization?.admins.some((admin) => - new Types.ObjectId(admin).equals(user._id), + new mongoose.Types.ObjectId(admin.toString()).equals(user._id), ); /* @@ -119,7 +119,11 @@ export const removeMember: MutationResolvers["removeMember"] = async ( of organization. If match is true assigns error message to errors list and breaks out of loop. */ - if (new Types.ObjectId(organization?.creatorId).equals(user._id)) { + 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, diff --git a/src/resolvers/Mutation/removeUserFromUserFamily.ts b/src/resolvers/Mutation/removeUserFromUserFamily.ts index ce95cdec5e..53e4111876 100644 --- a/src/resolvers/Mutation/removeUserFromUserFamily.ts +++ b/src/resolvers/Mutation/removeUserFromUserFamily.ts @@ -1,4 +1,3 @@ -import { Types } from "mongoose"; import { ADMIN_REMOVING_ADMIN, ADMIN_REMOVING_CREATOR, @@ -15,6 +14,7 @@ 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 @@ -48,11 +48,11 @@ export const removeUserFromUserFamily: MutationResolvers["removeUserFromUserFami })) as InterfaceUserFamily; const userIsMemberOfUserFamily = userFamily?.users.some((member) => { - return new Types.ObjectId(member).equals(user?._id); + return new mongoose.Types.ObjectId(member.toString()).equals(user?._id); }); const userIdUserFamilyAdmin = userFamily?.admins.some((admin) => { - new Types.ObjectId(admin).equals(user?._id); + new mongoose.Types.ObjectId(admin.toString()).equals(user?._id); }); //Check whether user family exists. if (!userFamily) { @@ -109,7 +109,11 @@ export const removeUserFromUserFamily: MutationResolvers["removeUserFromUserFami of userFamily. If match is true assigns error message to errors list and breaks out of loop. */ - if (new Types.ObjectId(userFamily.creator.toString()).equals(user._id)) { + 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, diff --git a/src/resolvers/Mutation/sendMembershipRequest.ts b/src/resolvers/Mutation/sendMembershipRequest.ts index cb9abebdb3..cd4e94767b 100644 --- a/src/resolvers/Mutation/sendMembershipRequest.ts +++ b/src/resolvers/Mutation/sendMembershipRequest.ts @@ -10,7 +10,7 @@ import { errors, requestContext } from "../../libraries"; import { User, MembershipRequest, Organization } from "../../models"; import { findOrganizationsInCache } from "../../services/OrganizationCache/findOrganizationsInCache"; import { cacheOrganizations } from "../../services/OrganizationCache/cacheOrganizations"; -import { Types } from "mongoose"; +import mongoose from "mongoose"; /** * This function enables to send membership request. * @param _parent - parent of current request @@ -65,7 +65,7 @@ export const sendMembershipRequest: MutationResolvers["sendMembershipRequest"] = // Checks if the user is already a member of the organization const isMember = organization.members.some((member) => - new Types.ObjectId(member).equals(context.userId), + new mongoose.Types.ObjectId(member.toString()).equals(context.userId), ); if (isMember === true) { @@ -81,7 +81,7 @@ export const sendMembershipRequest: MutationResolvers["sendMembershipRequest"] = if ( user !== null && organization.blockedUsers.some((blockedUser) => - new Types.ObjectId(blockedUser).equals(user._id), + new mongoose.Types.ObjectId(blockedUser.toString()).equals(user._id), ) ) { throw new errors.UnauthorizedError( diff --git a/src/resolvers/Mutation/togglePostPin.ts b/src/resolvers/Mutation/togglePostPin.ts index 545d24e09e..635d055fd8 100644 --- a/src/resolvers/Mutation/togglePostPin.ts +++ b/src/resolvers/Mutation/togglePostPin.ts @@ -1,4 +1,4 @@ -import { Types } from "mongoose"; +import mongoose from "mongoose"; import { LENGTH_VALIDATION_ERROR, PLEASE_PROVIDE_TITLE, @@ -99,7 +99,9 @@ export const togglePostPin: MutationResolvers["togglePostPin"] = async ( const currentUserIsOrganizationAdmin = currentUserAppProfile.adminFor.some( (organizationId) => organizationId && - new Types.ObjectId(organizationId.toString()).equals(post?.organization), + new mongoose.Types.ObjectId(organizationId.toString()).equals( + post?.organization, + ), ); if (!currentUserAppProfile.isSuperAdmin && !currentUserIsOrganizationAdmin) { @@ -128,7 +130,7 @@ export const togglePostPin: MutationResolvers["togglePostPin"] = async ( } } const currentPostIsPinned = organization?.pinnedPosts.some((postID) => - new Types.ObjectId(postID).equals(args.id), + new mongoose.Types.ObjectId(postID.toString()).equals(args.id), ); if (currentPostIsPinned) { diff --git a/src/resolvers/Mutation/unblockUser.ts b/src/resolvers/Mutation/unblockUser.ts index 15871dd3ed..04af993f0d 100644 --- a/src/resolvers/Mutation/unblockUser.ts +++ b/src/resolvers/Mutation/unblockUser.ts @@ -1,4 +1,3 @@ -import { Types } from "mongoose"; import { ORGANIZATION_NOT_FOUND_ERROR, USER_NOT_AUTHORIZED_ERROR, @@ -9,6 +8,7 @@ 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"; @@ -78,7 +78,8 @@ export const unblockUser: MutationResolvers["unblockUser"] = async ( await adminCheck(context.userId, organization); const userIsBlockedFromOrganization = organization.blockedUsers.some( - (blockedUser) => new Types.ObjectId(blockedUser).equals(user?._id), + (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 @@ -177,7 +178,7 @@ export const unblockUser: MutationResolvers["unblockUser"] = async ( $set: { organizationsBlockedBy: user.organizationsBlockedBy.filter( (organizationBlockedBy) => - !new Types.ObjectId(String(organization._id)).equals( + !new mongoose.Types.ObjectId(organization._id.toString()).equals( organizationBlockedBy, ), ), diff --git a/src/resolvers/Mutation/updateActionItem.ts b/src/resolvers/Mutation/updateActionItem.ts index ad36206bde..b00f741b78 100644 --- a/src/resolvers/Mutation/updateActionItem.ts +++ b/src/resolvers/Mutation/updateActionItem.ts @@ -1,4 +1,4 @@ -import { Types } from "mongoose"; +import mongoose from "mongoose"; import { ACTION_ITEM_NOT_FOUND_ERROR, EVENT_NOT_FOUND_ERROR, @@ -108,9 +108,9 @@ export const updateActionItem: MutationResolvers["updateActionItem"] = async ( let sameAssignedUser = false; if (args.data.assigneeId) { - sameAssignedUser = new Types.ObjectId(actionItem.assigneeId).equals( - args.data.assigneeId, - ); + sameAssignedUser = new mongoose.Types.ObjectId( + actionItem.assigneeId.toString(), + ).equals(args.data.assigneeId); if (!sameAssignedUser) { const newAssignedUser = await User.findOne({ @@ -131,7 +131,9 @@ export const updateActionItem: MutationResolvers["updateActionItem"] = async ( userIsOrganizationMember = newAssignedUser.joinedOrganizations.some( (organizationId) => organizationId === currorganizationId || - new Types.ObjectId(organizationId).equals(currorganizationId), + new mongoose.Types.ObjectId(organizationId.toString()).equals( + currorganizationId, + ), ); // Checks if the new asignee is a member of the organization @@ -148,7 +150,7 @@ export const updateActionItem: MutationResolvers["updateActionItem"] = async ( const currentUserIsOrgAdmin = currentUserAppProfile.adminFor.some( (ogranizationId) => ogranizationId === actionItem.actionItemCategoryId.organizationId || - new Types.ObjectId(ogranizationId?.toString()).equals( + new mongoose.Types.ObjectId(ogranizationId?.toString()).equals( actionItem.actionItemCategoryId.organizationId, ), ); @@ -185,7 +187,7 @@ export const updateActionItem: MutationResolvers["updateActionItem"] = async ( currentUserIsEventAdmin = currEvent.admins.some( (admin) => admin === context.userID || - new Types.ObjectId(admin).equals(context.userId), + new mongoose.Types.ObjectId(admin.toString()).equals(context.userId), ); } diff --git a/src/resolvers/Mutation/updateEvent.ts b/src/resolvers/Mutation/updateEvent.ts index 0f515f88c3..84a17d3662 100644 --- a/src/resolvers/Mutation/updateEvent.ts +++ b/src/resolvers/Mutation/updateEvent.ts @@ -15,16 +15,17 @@ import { import { isValidString } from "../../libraries/validators/validateString"; import { findEventsInCache } from "../../services/EventCache/findEventInCache"; import { cacheEvents } from "../../services/EventCache/cacheEvents"; -import { Types } from "mongoose"; 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 @@ -36,6 +37,7 @@ import { cacheAppUserProfile } from "../../services/AppUserProfileCache/cacheApp * 3. The the user is an admin of the event. * @returns Updated event. */ + export const updateEvent: MutationResolvers["updateEvent"] = async ( _parent, args, @@ -112,12 +114,16 @@ export const updateEvent: MutationResolvers["updateEvent"] = async ( const currentUserIsOrganizationAdmin = currentUserAppProfile.adminFor.some( (organization) => organization && - new Types.ObjectId(organization.toString()).equals(event?.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.equals(currentUser?._id), + const currentUserIsEventAdmin = event.admins.some( + (admin) => + admin === context.userID || + new mongoose.Types.ObjectId(admin.toString()).equals(context.userId), ); // Checks whether currentUser cannot update event. diff --git a/src/resolvers/Mutation/updateUserRoleInOrganization.ts b/src/resolvers/Mutation/updateUserRoleInOrganization.ts index 363dd0a8f8..5a1688f729 100644 --- a/src/resolvers/Mutation/updateUserRoleInOrganization.ts +++ b/src/resolvers/Mutation/updateUserRoleInOrganization.ts @@ -1,4 +1,4 @@ -import { Types } from "mongoose"; +import mongoose from "mongoose"; import { ADMIN_CANNOT_CHANGE_ITS_ROLE, ADMIN_CHANGING_ROLE_OF_CREATOR, @@ -49,7 +49,7 @@ export const updateUserRoleInOrganization: MutationResolvers["updateUserRoleInOr // Checks whether user to be removed is a member of the organization. const userIsOrganizationMember = organization?.members.some((member) => - new Types.ObjectId(member).equals(user._id), + new mongoose.Types.ObjectId(member.toString()).equals(user._id), ); if (!userIsOrganizationMember) { @@ -81,7 +81,7 @@ export const updateUserRoleInOrganization: MutationResolvers["updateUserRoleInOr } // Check whether loggedIn user is admin of the organization. const loggedInUserIsOrganizationAdmin = organization?.admins.some((admin) => - new Types.ObjectId(admin).equals(loggedInUser._id), + new mongoose.Types.ObjectId(admin.toString()).equals(loggedInUser._id), ); if ( @@ -108,7 +108,9 @@ export const updateUserRoleInOrganization: MutationResolvers["updateUserRoleInOr } // ADMIN cannot change the role of itself if ( - new Types.ObjectId(context?.userId).equals(user._id) && + new mongoose.Types.ObjectId(context?.userId.toString()).equals( + user._id, + ) && loggedInUserIsOrganizationAdmin ) { throw new errors.ConflictError( @@ -119,7 +121,11 @@ export const updateUserRoleInOrganization: MutationResolvers["updateUserRoleInOr } // ADMIN cannot change the role of the creator of the organization. - if (new Types.ObjectId(organization?.creatorId).equals(user._id)) { + 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, diff --git a/src/services/CommentCache/findCommentsByPostIdInCache.ts b/src/services/CommentCache/findCommentsByPostIdInCache.ts index 232526fb85..12478344ab 100644 --- a/src/services/CommentCache/findCommentsByPostIdInCache.ts +++ b/src/services/CommentCache/findCommentsByPostIdInCache.ts @@ -1,10 +1,10 @@ import CommentCache from "../redisCache"; import type { InterfaceComment } from "../../models"; -import { Types } from "mongoose"; +import mongoose from "mongoose"; import { logger } from "../../libraries"; export async function findCommentsByPostIdInCache( - postID: Types.ObjectId, + postID: mongoose.Types.ObjectId, ): Promise<(InterfaceComment | null)[]> { if (!postID) { return [null]; @@ -40,20 +40,20 @@ export async function findCommentsByPostIdInCache( return { ...commentObj, - _id: new Types.ObjectId(commentObj._id), + _id: new mongoose.Types.ObjectId(commentObj._id), createdAt: new Date(commentObj.createdAt), - creatorId: new Types.ObjectId(commentObj.creatorId), + creatorId: new mongoose.Types.ObjectId(commentObj.creatorId), updatedAt: new Date(commentObj.updatedAt), - postId: new Types.ObjectId(commentObj.postId), + postId: new mongoose.Types.ObjectId(commentObj.postId), likedBy: commentObj?.likedBy.length !== 0 ? commentObj?.likedBy?.map((user: string) => { - return new Types.ObjectId(user); + return new mongoose.Types.ObjectId(user); }) : [], }; diff --git a/src/services/CommentCache/findCommentsInCache.ts b/src/services/CommentCache/findCommentsInCache.ts index 388f59ad62..c41326beb6 100644 --- a/src/services/CommentCache/findCommentsInCache.ts +++ b/src/services/CommentCache/findCommentsInCache.ts @@ -1,6 +1,6 @@ import CommentCache from "../redisCache"; import type { InterfaceComment } from "../../models"; -import { Types } from "mongoose"; +import mongoose from "mongoose"; import { logger } from "../../libraries"; export async function findCommentsInCache( @@ -33,20 +33,20 @@ export async function findCommentsInCache( return { ...commentObj, - _id: new Types.ObjectId(commentObj._id), + _id: new mongoose.Types.ObjectId(commentObj._id), createdAt: new Date(commentObj.createdAt), - creatorId: new Types.ObjectId(commentObj.creatorId), + creatorId: new mongoose.Types.ObjectId(commentObj.creatorId), updatedAt: new Date(commentObj.updatedAt), - postId: new Types.ObjectId(commentObj.postId), + postId: new mongoose.Types.ObjectId(commentObj.postId), likedBy: commentObj?.likedBy.length !== 0 ? commentObj?.likedBy?.map((user: string) => { - return new Types.ObjectId(user); + return new mongoose.Types.ObjectId(user); }) : [], }; diff --git a/src/services/EventCache/findEventInCache.ts b/src/services/EventCache/findEventInCache.ts index f998f2153d..bfe942c89e 100644 --- a/src/services/EventCache/findEventInCache.ts +++ b/src/services/EventCache/findEventInCache.ts @@ -1,6 +1,6 @@ import EventCache from "../redisCache"; import type { InterfaceEvent } from "../../models"; -import { Types } from "mongoose"; +import mongoose from "mongoose"; import { logger } from "../../libraries"; export async function findEventsInCache( @@ -33,16 +33,16 @@ export async function findEventsInCache( return { ...eventObj, - _id: new Types.ObjectId(eventObj._id), + _id: new mongoose.Types.ObjectId(eventObj._id), admins: eventObj?.admins?.length !== 0 ? eventObj?.admins?.map((admin: string) => { - return new Types.ObjectId(admin); + return new mongoose.Types.ObjectId(admin); }) : [], - organization: new Types.ObjectId(eventObj.organization), + organization: new mongoose.Types.ObjectId(eventObj.organization), startDate: new Date(eventObj.startDate), @@ -54,7 +54,7 @@ export async function findEventsInCache( ...(eventObj?.endTime ? { endTime: new Date(eventObj.endTime) } : {}), // Conditional removal of endTime field - creatorId: new Types.ObjectId(eventObj.creatorId), + creatorId: new mongoose.Types.ObjectId(eventObj.creatorId), createdAt: new Date(eventObj.createdAt), diff --git a/src/services/OrganizationCache/findOrganizationsInCache.ts b/src/services/OrganizationCache/findOrganizationsInCache.ts index dd7a979ac7..de1837ba04 100644 --- a/src/services/OrganizationCache/findOrganizationsInCache.ts +++ b/src/services/OrganizationCache/findOrganizationsInCache.ts @@ -1,6 +1,6 @@ import OrganizationCache from "../redisCache"; import type { InterfaceOrganization } from "../../models"; -import { Types } from "mongoose"; +import mongoose from "mongoose"; import { logger } from "../../libraries"; export async function findOrganizationsInCache( @@ -35,41 +35,41 @@ export async function findOrganizationsInCache( createdAt: new Date(organization.createdAt), - _id: new Types.ObjectId(organization._id), + _id: new mongoose.Types.ObjectId(organization._id), admins: organization?.admins?.map((admin: string) => { - return new Types.ObjectId(admin); + return new mongoose.Types.ObjectId(admin); }), members: organization.members.length !== 0 ? organization.members?.map((member: string) => { - return new Types.ObjectId(member); + return new mongoose.Types.ObjectId(member); }) : [], - creatorId: new Types.ObjectId(organization.creatorId), + creatorId: new mongoose.Types.ObjectId(organization.creatorId), updatedAt: new Date(organization.updatedAt), groupChats: organization.groupChats.length !== 0 ? organization.groupChat.map((groupChat: string) => { - return new Types.ObjectId(groupChat); + return new mongoose.Types.ObjectId(groupChat); }) : [], posts: organization.posts.length !== 0 ? organization.posts?.map((post: string) => { - return new Types.ObjectId(post); + return new mongoose.Types.ObjectId(post); }) : [], pinnedPosts: organization.pinnedPosts.length !== 0 ? organization.pinnedPosts?.map((pinnedPost: string) => { - return new Types.ObjectId(pinnedPost); + return new mongoose.Types.ObjectId(pinnedPost); }) : [], @@ -77,7 +77,7 @@ export async function findOrganizationsInCache( organization.membershipRequests.length !== 0 ? organization.membershipRequests.map( (membershipRequest: string) => { - return new Types.ObjectId(membershipRequest); + return new mongoose.Types.ObjectId(membershipRequest); }, ) : [], @@ -85,7 +85,7 @@ export async function findOrganizationsInCache( blockedUsers: organization.blockedUsers.length !== 0 ? organization.blockedUsers.map((blockedUser: string) => { - return new Types.ObjectId(blockedUser); + return new mongoose.Types.ObjectId(blockedUser); }) : [], }; diff --git a/src/services/PostCache/findPostsInCache.ts b/src/services/PostCache/findPostsInCache.ts index 38ac1d7296..1ac6944285 100644 --- a/src/services/PostCache/findPostsInCache.ts +++ b/src/services/PostCache/findPostsInCache.ts @@ -1,6 +1,6 @@ import PostCache from "../redisCache"; import type { InterfacePost } from "../../models"; -import { Types } from "mongoose"; +import mongoose from "mongoose"; import { logger } from "../../libraries"; export async function findPostsInCache( @@ -33,11 +33,11 @@ export async function findPostsInCache( return { ...postObj, - _id: new Types.ObjectId(postObj._id), + _id: new mongoose.Types.ObjectId(postObj._id), createdAt: new Date(postObj.createdAt), - organization: new Types.ObjectId(postObj.organization), + organization: new mongoose.Types.ObjectId(postObj.organization), likeCount: Number(postObj.likeCount), @@ -46,11 +46,11 @@ export async function findPostsInCache( likedBy: postObj?.likedBy.length !== 0 ? postObj?.likedBy?.map((user: string) => { - return new Types.ObjectId(user); + return new mongoose.Types.ObjectId(user); }) : [], - creatorId: new Types.ObjectId(postObj.creatorId), + creatorId: new mongoose.Types.ObjectId(postObj.creatorId), updatedAt: new Date(postObj.updatedAt), }; diff --git a/src/utilities/adminCheck.ts b/src/utilities/adminCheck.ts index 86bf12ded3..63df8d4b8f 100644 --- a/src/utilities/adminCheck.ts +++ b/src/utilities/adminCheck.ts @@ -1,4 +1,5 @@ -import { Types } from "mongoose"; +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"; @@ -16,7 +17,9 @@ export const adminCheck = async ( organization: InterfaceOrganization, ): Promise => { const userIsOrganizationAdmin = organization.admins.some( - (admin) => admin === userId || new Types.ObjectId(admin).equals(userId), + (admin) => + admin === userId || + new mongoose.Types.ObjectId(admin).toString() === userId.toString(), ); const userAppProfile = await AppUserProfile.findOne({ diff --git a/src/utilities/userFamilyAdminCheck.ts b/src/utilities/userFamilyAdminCheck.ts index 637358e8e7..95bc2a4e1a 100644 --- a/src/utilities/userFamilyAdminCheck.ts +++ b/src/utilities/userFamilyAdminCheck.ts @@ -1,4 +1,5 @@ -import { Types } from "mongoose"; +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"; @@ -16,7 +17,9 @@ export const adminCheck = async ( userFamily: InterfaceUserFamily, ): Promise => { const userIsUserFamilyAdmin = userFamily.admins.some( - (admin) => admin === userId || new Types.ObjectId(admin).equals(userId), + (admin) => + admin === userId || + new mongoose.Types.ObjectId(admin.toString()).equals(userId), ); // const user = await User.findOne({ From 7004b130eb792dc14ea9a14c963906fbb7d162d1 Mon Sep 17 00:00:00 2001 From: Meetul Rathore Date: Sun, 21 Apr 2024 21:39:40 +0530 Subject: [PATCH 07/16] remove event status (#2245) --- sample_data/events.json | 17280 ---------------- .../generateRecurringEventInstances.ts | 3 - src/models/Event.ts | 8 - src/resolvers/Query/event.ts | 3 +- src/resolvers/Query/eventsByOrganization.ts | 5 +- .../Query/eventsByOrganizationConnection.ts | 1 - src/resolvers/Query/registeredEventsByUser.ts | 1 - src/typeDefs/types.ts | 1 - src/types/generatedGraphQLTypes.ts | 2 - src/utilities/createSampleOrganizationUtil.ts | 1 - tests/resolvers/Query/event.spec.ts | 2 +- .../Query/eventsByOrganization.spec.ts | 1 - .../eventsByOrganizationConnection.spec.ts | 20 - .../Query/registeredEventsByUser.spec.ts | 19 - .../createSampleOrganizationUtil.spec.ts | 1 - 15 files changed, 4 insertions(+), 17344 deletions(-) diff --git a/sample_data/events.json b/sample_data/events.json index 04e7acacbe..e120172442 100644 --- a/sample_data/events.json +++ b/sample_data/events.json @@ -18,7 +18,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:34.865Z", @@ -45,7 +44,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.172Z", @@ -72,7 +70,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.172Z", @@ -99,7 +96,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.172Z", @@ -126,7 +122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.172Z", @@ -153,7 +148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.172Z", @@ -180,7 +174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.173Z", @@ -207,7 +200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.173Z", @@ -234,7 +226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.173Z", @@ -261,7 +252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.173Z", @@ -288,7 +278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.173Z", @@ -315,7 +304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.173Z", @@ -342,7 +330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.173Z", @@ -369,7 +356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.173Z", @@ -396,7 +382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.173Z", @@ -423,7 +408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.173Z", @@ -450,7 +434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.173Z", @@ -477,7 +460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.174Z", @@ -504,7 +486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.174Z", @@ -531,7 +512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.174Z", @@ -558,7 +538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.174Z", @@ -585,7 +564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.174Z", @@ -612,7 +590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.174Z", @@ -639,7 +616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.174Z", @@ -666,7 +642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.174Z", @@ -693,7 +668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.174Z", @@ -720,7 +694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.174Z", @@ -747,7 +720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.174Z", @@ -774,7 +746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.174Z", @@ -801,7 +772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.174Z", @@ -828,7 +798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.174Z", @@ -855,7 +824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.174Z", @@ -882,7 +850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.174Z", @@ -909,7 +876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.174Z", @@ -936,7 +902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.174Z", @@ -963,7 +928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.174Z", @@ -990,7 +954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.174Z", @@ -1017,7 +980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.174Z", @@ -1044,7 +1006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1071,7 +1032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1098,7 +1058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1125,7 +1084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1152,7 +1110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1179,7 +1136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1206,7 +1162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1233,7 +1188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1260,7 +1214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1287,7 +1240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1314,7 +1266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1341,7 +1292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1368,7 +1318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1395,7 +1344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1422,7 +1370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1449,7 +1396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1476,7 +1422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1503,7 +1448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1530,7 +1474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1557,7 +1500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1584,7 +1526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1611,7 +1552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1638,7 +1578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1665,7 +1604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.175Z", @@ -1692,7 +1630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.176Z", @@ -1719,7 +1656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.176Z", @@ -1746,7 +1682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.176Z", @@ -1773,7 +1708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.176Z", @@ -1800,7 +1734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.176Z", @@ -1827,7 +1760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.176Z", @@ -1854,7 +1786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.176Z", @@ -1881,7 +1812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.176Z", @@ -1908,7 +1838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.176Z", @@ -1935,7 +1864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.176Z", @@ -1962,7 +1890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.176Z", @@ -1989,7 +1916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.176Z", @@ -2016,7 +1942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.176Z", @@ -2043,7 +1968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.176Z", @@ -2070,7 +1994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.176Z", @@ -2097,7 +2020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.176Z", @@ -2124,7 +2046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.176Z", @@ -2151,7 +2072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.176Z", @@ -2178,7 +2098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.176Z", @@ -2205,7 +2124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.176Z", @@ -2232,7 +2150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.176Z", @@ -2259,7 +2176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.176Z", @@ -2286,7 +2202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.176Z", @@ -2313,7 +2228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.177Z", @@ -2340,7 +2254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.177Z", @@ -2367,7 +2280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.177Z", @@ -2394,7 +2306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.177Z", @@ -2421,7 +2332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.177Z", @@ -2448,7 +2358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.177Z", @@ -2475,7 +2384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.177Z", @@ -2502,7 +2410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.177Z", @@ -2529,7 +2436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.177Z", @@ -2556,7 +2462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.177Z", @@ -2583,7 +2488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.177Z", @@ -2610,7 +2514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.177Z", @@ -2637,7 +2540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.177Z", @@ -2664,7 +2566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.177Z", @@ -2691,7 +2592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.177Z", @@ -2718,7 +2618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.177Z", @@ -2745,7 +2644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.177Z", @@ -2772,7 +2670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.177Z", @@ -2799,7 +2696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.177Z", @@ -2826,7 +2722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.177Z", @@ -2853,7 +2748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.177Z", @@ -2880,7 +2774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.177Z", @@ -2907,7 +2800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.177Z", @@ -2934,7 +2826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.178Z", @@ -2961,7 +2852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.178Z", @@ -2988,7 +2878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.178Z", @@ -3015,7 +2904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.178Z", @@ -3042,7 +2930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.178Z", @@ -3069,7 +2956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.178Z", @@ -3096,7 +2982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.178Z", @@ -3123,7 +3008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.178Z", @@ -3150,7 +3034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.178Z", @@ -3177,7 +3060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.178Z", @@ -3204,7 +3086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.178Z", @@ -3231,7 +3112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.178Z", @@ -3258,7 +3138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.178Z", @@ -3285,7 +3164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.178Z", @@ -3312,7 +3190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.178Z", @@ -3339,7 +3216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.178Z", @@ -3366,7 +3242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.178Z", @@ -3393,7 +3268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.178Z", @@ -3420,7 +3294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.178Z", @@ -3447,7 +3320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.178Z", @@ -3474,7 +3346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.178Z", @@ -3501,7 +3372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -3528,7 +3398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -3555,7 +3424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -3582,7 +3450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -3609,7 +3476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -3636,7 +3502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -3663,7 +3528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -3690,7 +3554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -3717,7 +3580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -3744,7 +3606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -3771,7 +3632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -3798,7 +3658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -3825,7 +3684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -3852,7 +3710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -3879,7 +3736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -3906,7 +3762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -3933,7 +3788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -3960,7 +3814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -3987,7 +3840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -4014,7 +3866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -4041,7 +3892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -4068,7 +3918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -4095,7 +3944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -4122,7 +3970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.179Z", @@ -4149,7 +3996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.180Z", @@ -4176,7 +4022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.180Z", @@ -4203,7 +4048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.180Z", @@ -4230,7 +4074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.180Z", @@ -4257,7 +4100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.180Z", @@ -4284,7 +4126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.180Z", @@ -4311,7 +4152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.180Z", @@ -4338,7 +4178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.180Z", @@ -4365,7 +4204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.180Z", @@ -4392,7 +4230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.180Z", @@ -4419,7 +4256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.180Z", @@ -4446,7 +4282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.180Z", @@ -4473,7 +4308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.180Z", @@ -4500,7 +4334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.180Z", @@ -4527,7 +4360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.180Z", @@ -4554,7 +4386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.180Z", @@ -4581,7 +4412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.180Z", @@ -4608,7 +4438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.180Z", @@ -4635,7 +4464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.181Z", @@ -4662,7 +4490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.181Z", @@ -4689,7 +4516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.181Z", @@ -4716,7 +4542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.181Z", @@ -4743,7 +4568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.181Z", @@ -4770,7 +4594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.181Z", @@ -4797,7 +4620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.181Z", @@ -4824,7 +4646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.181Z", @@ -4851,7 +4672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.181Z", @@ -4878,7 +4698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.181Z", @@ -4905,7 +4724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.182Z", @@ -4932,7 +4750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.182Z", @@ -4959,7 +4776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.182Z", @@ -4986,7 +4802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.182Z", @@ -5013,7 +4828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.182Z", @@ -5040,7 +4854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.182Z", @@ -5067,7 +4880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.182Z", @@ -5094,7 +4906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.182Z", @@ -5121,7 +4932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.182Z", @@ -5148,7 +4958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.182Z", @@ -5175,7 +4984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.182Z", @@ -5202,7 +5010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.182Z", @@ -5229,7 +5036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.182Z", @@ -5256,7 +5062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.182Z", @@ -5283,7 +5088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.183Z", @@ -5310,7 +5114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.183Z", @@ -5337,7 +5140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.183Z", @@ -5364,7 +5166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.183Z", @@ -5391,7 +5192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.183Z", @@ -5418,7 +5218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.183Z", @@ -5445,7 +5244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.183Z", @@ -5472,7 +5270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.183Z", @@ -5499,7 +5296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.183Z", @@ -5526,7 +5322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.184Z", @@ -5553,7 +5348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.184Z", @@ -5580,7 +5374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.184Z", @@ -5607,7 +5400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.184Z", @@ -5634,7 +5426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.184Z", @@ -5661,7 +5452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.184Z", @@ -5688,7 +5478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.184Z", @@ -5715,7 +5504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.184Z", @@ -5742,7 +5530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.184Z", @@ -5769,7 +5556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.184Z", @@ -5796,7 +5582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.184Z", @@ -5823,7 +5608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.184Z", @@ -5850,7 +5634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.184Z", @@ -5877,7 +5660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.184Z", @@ -5904,7 +5686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.184Z", @@ -5931,7 +5712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.185Z", @@ -5958,7 +5738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.185Z", @@ -5985,7 +5764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.185Z", @@ -6012,7 +5790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.185Z", @@ -6039,7 +5816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.185Z", @@ -6066,7 +5842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.185Z", @@ -6093,7 +5868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.185Z", @@ -6120,7 +5894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.185Z", @@ -6147,7 +5920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.185Z", @@ -6174,7 +5946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.185Z", @@ -6201,7 +5972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.185Z", @@ -6228,7 +5998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.185Z", @@ -6255,7 +6024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.185Z", @@ -6282,7 +6050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.185Z", @@ -6309,7 +6076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.185Z", @@ -6336,7 +6102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.185Z", @@ -6363,7 +6128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.185Z", @@ -6390,7 +6154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.185Z", @@ -6417,7 +6180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.185Z", @@ -6444,7 +6206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -6471,7 +6232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -6498,7 +6258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -6525,7 +6284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -6552,7 +6310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -6579,7 +6336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -6606,7 +6362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -6633,7 +6388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -6660,7 +6414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -6687,7 +6440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -6714,7 +6466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -6741,7 +6492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -6768,7 +6518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -6795,7 +6544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -6822,7 +6570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -6849,7 +6596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -6876,7 +6622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -6903,7 +6648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -6930,7 +6674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -6957,7 +6700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -6984,7 +6726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -7011,7 +6752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -7038,7 +6778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -7065,7 +6804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.186Z", @@ -7092,7 +6830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7119,7 +6856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7146,7 +6882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7173,7 +6908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7200,7 +6934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7227,7 +6960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7254,7 +6986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7281,7 +7012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7308,7 +7038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7335,7 +7064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7362,7 +7090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7389,7 +7116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7416,7 +7142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7443,7 +7168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7470,7 +7194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7497,7 +7220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7524,7 +7246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7551,7 +7272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7578,7 +7298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7605,7 +7324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7632,7 +7350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7659,7 +7376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7686,7 +7402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7713,7 +7428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7740,7 +7454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.187Z", @@ -7767,7 +7480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.188Z", @@ -7794,7 +7506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.188Z", @@ -7821,7 +7532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.188Z", @@ -7848,7 +7558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.188Z", @@ -7875,7 +7584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.188Z", @@ -7902,7 +7610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.188Z", @@ -7929,7 +7636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.188Z", @@ -7956,7 +7662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.188Z", @@ -7983,7 +7688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.188Z", @@ -8010,7 +7714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.188Z", @@ -8037,7 +7740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.188Z", @@ -8064,7 +7766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.188Z", @@ -8091,7 +7792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.188Z", @@ -8118,7 +7818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.188Z", @@ -8145,7 +7844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.188Z", @@ -8172,7 +7870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.188Z", @@ -8199,7 +7896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.188Z", @@ -8226,7 +7922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.188Z", @@ -8253,7 +7948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.188Z", @@ -8280,7 +7974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8307,7 +8000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8334,7 +8026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8361,7 +8052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8388,7 +8078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8415,7 +8104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8442,7 +8130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8469,7 +8156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8496,7 +8182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8523,7 +8208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8550,7 +8234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8577,7 +8260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8604,7 +8286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8631,7 +8312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8658,7 +8338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8685,7 +8364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8712,7 +8390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8739,7 +8416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8766,7 +8442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8793,7 +8468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8820,7 +8494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8847,7 +8520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8874,7 +8546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8901,7 +8572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.189Z", @@ -8928,7 +8598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.190Z", @@ -8955,7 +8624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.190Z", @@ -8982,7 +8650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.190Z", @@ -9009,7 +8676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.190Z", @@ -9036,7 +8702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.190Z", @@ -9063,7 +8728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.190Z", @@ -9090,7 +8754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.190Z", @@ -9117,7 +8780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.190Z", @@ -9144,7 +8806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.190Z", @@ -9171,7 +8832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.190Z", @@ -9198,7 +8858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.190Z", @@ -9225,7 +8884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.190Z", @@ -9252,7 +8910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.190Z", @@ -9279,7 +8936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.190Z", @@ -9306,7 +8962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.190Z", @@ -9333,7 +8988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.190Z", @@ -9360,7 +9014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.190Z", @@ -9387,7 +9040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.190Z", @@ -9414,7 +9066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.190Z", @@ -9441,7 +9092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.190Z", @@ -9468,7 +9118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.191Z", @@ -9495,7 +9144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.191Z", @@ -9522,7 +9170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.191Z", @@ -9549,7 +9196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.191Z", @@ -9576,7 +9222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.191Z", @@ -9603,7 +9248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.191Z", @@ -9630,7 +9274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.191Z", @@ -9657,7 +9300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.191Z", @@ -9684,7 +9326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.191Z", @@ -9711,7 +9352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.191Z", @@ -9738,7 +9378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.191Z", @@ -9765,7 +9404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.191Z", @@ -9792,7 +9430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.191Z", @@ -9819,7 +9456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.191Z", @@ -9846,7 +9482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.191Z", @@ -9873,7 +9508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.191Z", @@ -9900,7 +9534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.191Z", @@ -9927,7 +9560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.191Z", @@ -9954,7 +9586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.191Z", @@ -9981,7 +9612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.191Z", @@ -10008,7 +9638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.191Z", @@ -10035,7 +9664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.191Z", @@ -10062,7 +9690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.191Z", @@ -10089,7 +9716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.192Z", @@ -10116,7 +9742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.192Z", @@ -10143,7 +9768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.192Z", @@ -10170,7 +9794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.192Z", @@ -10197,7 +9820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.192Z", @@ -10224,7 +9846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.192Z", @@ -10251,7 +9872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.192Z", @@ -10278,7 +9898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.192Z", @@ -10305,7 +9924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.192Z", @@ -10332,7 +9950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.192Z", @@ -10359,7 +9976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.192Z", @@ -10386,7 +10002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.192Z", @@ -10413,7 +10028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.192Z", @@ -10440,7 +10054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.192Z", @@ -10467,7 +10080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.192Z", @@ -10494,7 +10106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.192Z", @@ -10521,7 +10132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.192Z", @@ -10548,7 +10158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.192Z", @@ -10575,7 +10184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.192Z", @@ -10602,7 +10210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.192Z", @@ -10629,7 +10236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.192Z", @@ -10656,7 +10262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.192Z", @@ -10683,7 +10288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.192Z", @@ -10710,7 +10314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.193Z", @@ -10737,7 +10340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.193Z", @@ -10764,7 +10366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.193Z", @@ -10791,7 +10392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.193Z", @@ -10818,7 +10418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.193Z", @@ -10845,7 +10444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.193Z", @@ -10872,7 +10470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.193Z", @@ -10899,7 +10496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.193Z", @@ -10926,7 +10522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.193Z", @@ -10953,7 +10548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.193Z", @@ -10980,7 +10574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.193Z", @@ -11007,7 +10600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.193Z", @@ -11034,7 +10626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.193Z", @@ -11061,7 +10652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.193Z", @@ -11088,7 +10678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.193Z", @@ -11115,7 +10704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.193Z", @@ -11142,7 +10730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.193Z", @@ -11169,7 +10756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.194Z", @@ -11196,7 +10782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.194Z", @@ -11223,7 +10808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.194Z", @@ -11250,7 +10834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.194Z", @@ -11277,7 +10860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.194Z", @@ -11304,7 +10886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.194Z", @@ -11331,7 +10912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.194Z", @@ -11358,7 +10938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.194Z", @@ -11385,7 +10964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.194Z", @@ -11412,7 +10990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.194Z", @@ -11439,7 +11016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.194Z", @@ -11466,7 +11042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.194Z", @@ -11493,7 +11068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.194Z", @@ -11520,7 +11094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.194Z", @@ -11547,7 +11120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.194Z", @@ -11574,7 +11146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.194Z", @@ -11601,7 +11172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.194Z", @@ -11628,7 +11198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.194Z", @@ -11655,7 +11224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.194Z", @@ -11682,7 +11250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.194Z", @@ -11709,7 +11276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.194Z", @@ -11736,7 +11302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.195Z", @@ -11763,7 +11328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.195Z", @@ -11790,7 +11354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.195Z", @@ -11817,7 +11380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.195Z", @@ -11844,7 +11406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.195Z", @@ -11871,7 +11432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.195Z", @@ -11898,7 +11458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.195Z", @@ -11925,7 +11484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.195Z", @@ -11952,7 +11510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.195Z", @@ -11979,7 +11536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.195Z", @@ -12006,7 +11562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.195Z", @@ -12033,7 +11588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.195Z", @@ -12060,7 +11614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.196Z", @@ -12087,7 +11640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.196Z", @@ -12114,7 +11666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.196Z", @@ -12141,7 +11692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.196Z", @@ -12168,7 +11718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.196Z", @@ -12195,7 +11744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.196Z", @@ -12222,7 +11770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.196Z", @@ -12249,7 +11796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.196Z", @@ -12276,7 +11822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.196Z", @@ -12303,7 +11848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.196Z", @@ -12330,7 +11874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.196Z", @@ -12357,7 +11900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.197Z", @@ -12384,7 +11926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.197Z", @@ -12411,7 +11952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.197Z", @@ -12438,7 +11978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.197Z", @@ -12465,7 +12004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.197Z", @@ -12492,7 +12030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.197Z", @@ -12519,7 +12056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.197Z", @@ -12546,7 +12082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.197Z", @@ -12573,7 +12108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.197Z", @@ -12600,7 +12134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.198Z", @@ -12627,7 +12160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.198Z", @@ -12654,7 +12186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.198Z", @@ -12681,7 +12212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.198Z", @@ -12708,7 +12238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.198Z", @@ -12735,7 +12264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.198Z", @@ -12762,7 +12290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.198Z", @@ -12789,7 +12316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.198Z", @@ -12816,7 +12342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.199Z", @@ -12843,7 +12368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.199Z", @@ -12870,7 +12394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.199Z", @@ -12897,7 +12420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.199Z", @@ -12924,7 +12446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.199Z", @@ -12951,7 +12472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.199Z", @@ -12978,7 +12498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.199Z", @@ -13005,7 +12524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.199Z", @@ -13032,7 +12550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.199Z", @@ -13059,7 +12576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.199Z", @@ -13086,7 +12602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.200Z", @@ -13113,7 +12628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.200Z", @@ -13140,7 +12654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.200Z", @@ -13167,7 +12680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.200Z", @@ -13194,7 +12706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.200Z", @@ -13221,7 +12732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.200Z", @@ -13248,7 +12758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.200Z", @@ -13275,7 +12784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.200Z", @@ -13302,7 +12810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.200Z", @@ -13329,7 +12836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.200Z", @@ -13356,7 +12862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.200Z", @@ -13383,7 +12888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.200Z", @@ -13410,7 +12914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.201Z", @@ -13437,7 +12940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.201Z", @@ -13464,7 +12966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.201Z", @@ -13491,7 +12992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.201Z", @@ -13518,7 +13018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.201Z", @@ -13545,7 +13044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.201Z", @@ -13572,7 +13070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.201Z", @@ -13599,7 +13096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.201Z", @@ -13626,7 +13122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.202Z", @@ -13653,7 +13148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.202Z", @@ -13680,7 +13174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.202Z", @@ -13707,7 +13200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.202Z", @@ -13734,7 +13226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.202Z", @@ -13761,7 +13252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.202Z", @@ -13788,7 +13278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.202Z", @@ -13815,7 +13304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.202Z", @@ -13842,7 +13330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.202Z", @@ -13869,7 +13356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.202Z", @@ -13896,7 +13382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.202Z", @@ -13923,7 +13408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.202Z", @@ -13950,7 +13434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.203Z", @@ -13977,7 +13460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.203Z", @@ -14004,7 +13486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.203Z", @@ -14031,7 +13512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.203Z", @@ -14058,7 +13538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.203Z", @@ -14085,7 +13564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.203Z", @@ -14112,7 +13590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.203Z", @@ -14139,7 +13616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.203Z", @@ -14166,7 +13642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:15:35.203Z", @@ -14191,7 +13666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:45.641Z", @@ -14218,7 +13692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.138Z", @@ -14245,7 +13718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.139Z", @@ -14272,7 +13744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.139Z", @@ -14299,7 +13770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.139Z", @@ -14326,7 +13796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.139Z", @@ -14353,7 +13822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.140Z", @@ -14380,7 +13848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.140Z", @@ -14407,7 +13874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.140Z", @@ -14434,7 +13900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.140Z", @@ -14461,7 +13926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.140Z", @@ -14488,7 +13952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.140Z", @@ -14515,7 +13978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.140Z", @@ -14542,7 +14004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.140Z", @@ -14569,7 +14030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.140Z", @@ -14596,7 +14056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.141Z", @@ -14623,7 +14082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.141Z", @@ -14650,7 +14108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.141Z", @@ -14677,7 +14134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.141Z", @@ -14704,7 +14160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.141Z", @@ -14731,7 +14186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.141Z", @@ -14758,7 +14212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.141Z", @@ -14785,7 +14238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.141Z", @@ -14812,7 +14264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.141Z", @@ -14839,7 +14290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.141Z", @@ -14866,7 +14316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.141Z", @@ -14893,7 +14342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.141Z", @@ -14920,7 +14368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.141Z", @@ -14947,7 +14394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.141Z", @@ -14974,7 +14420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.141Z", @@ -15001,7 +14446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.142Z", @@ -15028,7 +14472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.142Z", @@ -15055,7 +14498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.142Z", @@ -15082,7 +14524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.142Z", @@ -15109,7 +14550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.142Z", @@ -15136,7 +14576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.142Z", @@ -15163,7 +14602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.142Z", @@ -15190,7 +14628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.142Z", @@ -15217,7 +14654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.142Z", @@ -15244,7 +14680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.142Z", @@ -15271,7 +14706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.143Z", @@ -15298,7 +14732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.143Z", @@ -15325,7 +14758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.143Z", @@ -15352,7 +14784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.143Z", @@ -15379,7 +14810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.143Z", @@ -15406,7 +14836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.143Z", @@ -15433,7 +14862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.143Z", @@ -15460,7 +14888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.143Z", @@ -15487,7 +14914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.143Z", @@ -15514,7 +14940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.143Z", @@ -15541,7 +14966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.143Z", @@ -15568,7 +14992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.143Z", @@ -15595,7 +15018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.143Z", @@ -15622,7 +15044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.143Z", @@ -15649,7 +15070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.143Z", @@ -15676,7 +15096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.143Z", @@ -15703,7 +15122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.144Z", @@ -15730,7 +15148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.144Z", @@ -15757,7 +15174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.144Z", @@ -15784,7 +15200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.144Z", @@ -15811,7 +15226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.144Z", @@ -15838,7 +15252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.144Z", @@ -15865,7 +15278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.144Z", @@ -15892,7 +15304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.144Z", @@ -15919,7 +15330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.144Z", @@ -15946,7 +15356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.144Z", @@ -15973,7 +15382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.144Z", @@ -16000,7 +15408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.144Z", @@ -16027,7 +15434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.144Z", @@ -16054,7 +15460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.144Z", @@ -16081,7 +15486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.145Z", @@ -16108,7 +15512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.145Z", @@ -16135,7 +15538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.145Z", @@ -16162,7 +15564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.145Z", @@ -16189,7 +15590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.145Z", @@ -16216,7 +15616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.145Z", @@ -16243,7 +15642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.145Z", @@ -16270,7 +15668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.145Z", @@ -16297,7 +15694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.145Z", @@ -16324,7 +15720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.145Z", @@ -16351,7 +15746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.145Z", @@ -16378,7 +15772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.145Z", @@ -16405,7 +15798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.145Z", @@ -16432,7 +15824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.145Z", @@ -16459,7 +15850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.145Z", @@ -16486,7 +15876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.145Z", @@ -16513,7 +15902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.145Z", @@ -16540,7 +15928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.145Z", @@ -16567,7 +15954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.145Z", @@ -16594,7 +15980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.145Z", @@ -16621,7 +16006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.146Z", @@ -16648,7 +16032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.146Z", @@ -16675,7 +16058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.146Z", @@ -16702,7 +16084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.146Z", @@ -16729,7 +16110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.146Z", @@ -16756,7 +16136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.146Z", @@ -16783,7 +16162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.146Z", @@ -16810,7 +16188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.146Z", @@ -16837,7 +16214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.146Z", @@ -16864,7 +16240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.146Z", @@ -16891,7 +16266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.146Z", @@ -16918,7 +16292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.146Z", @@ -16945,7 +16318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.146Z", @@ -16972,7 +16344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.146Z", @@ -16999,7 +16370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.146Z", @@ -17026,7 +16396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.146Z", @@ -17053,7 +16422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.146Z", @@ -17080,7 +16448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.146Z", @@ -17107,7 +16474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.146Z", @@ -17134,7 +16500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.147Z", @@ -17161,7 +16526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.147Z", @@ -17188,7 +16552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.147Z", @@ -17215,7 +16578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.147Z", @@ -17242,7 +16604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.147Z", @@ -17269,7 +16630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.147Z", @@ -17296,7 +16656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.147Z", @@ -17323,7 +16682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.147Z", @@ -17350,7 +16708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.147Z", @@ -17377,7 +16734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.147Z", @@ -17404,7 +16760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.147Z", @@ -17431,7 +16786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.147Z", @@ -17458,7 +16812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.147Z", @@ -17485,7 +16838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.147Z", @@ -17512,7 +16864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.147Z", @@ -17539,7 +16890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.147Z", @@ -17566,7 +16916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.147Z", @@ -17593,7 +16942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.147Z", @@ -17620,7 +16968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.148Z", @@ -17647,7 +16994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.148Z", @@ -17674,7 +17020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.148Z", @@ -17701,7 +17046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.148Z", @@ -17728,7 +17072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.148Z", @@ -17755,7 +17098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.148Z", @@ -17782,7 +17124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.148Z", @@ -17809,7 +17150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.148Z", @@ -17836,7 +17176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.148Z", @@ -17863,7 +17202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.148Z", @@ -17890,7 +17228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.148Z", @@ -17917,7 +17254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.148Z", @@ -17944,7 +17280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.148Z", @@ -17971,7 +17306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.148Z", @@ -17998,7 +17332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.148Z", @@ -18025,7 +17358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.148Z", @@ -18052,7 +17384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.148Z", @@ -18079,7 +17410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.148Z", @@ -18106,7 +17436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.148Z", @@ -18133,7 +17462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.148Z", @@ -18160,7 +17488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.149Z", @@ -18187,7 +17514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.149Z", @@ -18214,7 +17540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.149Z", @@ -18241,7 +17566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.149Z", @@ -18268,7 +17592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.149Z", @@ -18295,7 +17618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.149Z", @@ -18322,7 +17644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.149Z", @@ -18349,7 +17670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.149Z", @@ -18376,7 +17696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.149Z", @@ -18403,7 +17722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.149Z", @@ -18430,7 +17748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.149Z", @@ -18457,7 +17774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.149Z", @@ -18484,7 +17800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.149Z", @@ -18511,7 +17826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.149Z", @@ -18538,7 +17852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.149Z", @@ -18565,7 +17878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.149Z", @@ -18592,7 +17904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.150Z", @@ -18619,7 +17930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.150Z", @@ -18646,7 +17956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.150Z", @@ -18673,7 +17982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.150Z", @@ -18700,7 +18008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.150Z", @@ -18727,7 +18034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.150Z", @@ -18754,7 +18060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.150Z", @@ -18781,7 +18086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.150Z", @@ -18808,7 +18112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.150Z", @@ -18835,7 +18138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.150Z", @@ -18862,7 +18164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.150Z", @@ -18889,7 +18190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.150Z", @@ -18916,7 +18216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.150Z", @@ -18943,7 +18242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.150Z", @@ -18970,7 +18268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.150Z", @@ -18997,7 +18294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.150Z", @@ -19024,7 +18320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.150Z", @@ -19051,7 +18346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.151Z", @@ -19078,7 +18372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.151Z", @@ -19105,7 +18398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.151Z", @@ -19132,7 +18424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.151Z", @@ -19159,7 +18450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.151Z", @@ -19186,7 +18476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.151Z", @@ -19213,7 +18502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.151Z", @@ -19240,7 +18528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.151Z", @@ -19267,7 +18554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.151Z", @@ -19294,7 +18580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.151Z", @@ -19321,7 +18606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.151Z", @@ -19348,7 +18632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.151Z", @@ -19375,7 +18658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.151Z", @@ -19402,7 +18684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.151Z", @@ -19429,7 +18710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.151Z", @@ -19456,7 +18736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.151Z", @@ -19483,7 +18762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.151Z", @@ -19510,7 +18788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.151Z", @@ -19537,7 +18814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.151Z", @@ -19564,7 +18840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.152Z", @@ -19591,7 +18866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.152Z", @@ -19618,7 +18892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.152Z", @@ -19645,7 +18918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.152Z", @@ -19672,7 +18944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.152Z", @@ -19699,7 +18970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.152Z", @@ -19726,7 +18996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.152Z", @@ -19753,7 +19022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.152Z", @@ -19780,7 +19048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.152Z", @@ -19807,7 +19074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.152Z", @@ -19834,7 +19100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.152Z", @@ -19861,7 +19126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.152Z", @@ -19888,7 +19152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.152Z", @@ -19915,7 +19178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.152Z", @@ -19942,7 +19204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.152Z", @@ -19969,7 +19230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.152Z", @@ -19996,7 +19256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.152Z", @@ -20023,7 +19282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.153Z", @@ -20050,7 +19308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.153Z", @@ -20077,7 +19334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.153Z", @@ -20104,7 +19360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.153Z", @@ -20131,7 +19386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.153Z", @@ -20158,7 +19412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.153Z", @@ -20185,7 +19438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.153Z", @@ -20212,7 +19464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.153Z", @@ -20239,7 +19490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.153Z", @@ -20266,7 +19516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.153Z", @@ -20293,7 +19542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.153Z", @@ -20320,7 +19568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.153Z", @@ -20347,7 +19594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.154Z", @@ -20374,7 +19620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.154Z", @@ -20401,7 +19646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.154Z", @@ -20428,7 +19672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.154Z", @@ -20455,7 +19698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.154Z", @@ -20482,7 +19724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.154Z", @@ -20509,7 +19750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.154Z", @@ -20536,7 +19776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.154Z", @@ -20563,7 +19802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.154Z", @@ -20590,7 +19828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.155Z", @@ -20617,7 +19854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.155Z", @@ -20644,7 +19880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.155Z", @@ -20671,7 +19906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.155Z", @@ -20698,7 +19932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.155Z", @@ -20725,7 +19958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.155Z", @@ -20752,7 +19984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.155Z", @@ -20779,7 +20010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.155Z", @@ -20806,7 +20036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.155Z", @@ -20833,7 +20062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.155Z", @@ -20860,7 +20088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.155Z", @@ -20887,7 +20114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.155Z", @@ -20914,7 +20140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.155Z", @@ -20941,7 +20166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.155Z", @@ -20968,7 +20192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.155Z", @@ -20995,7 +20218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.156Z", @@ -21022,7 +20244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.156Z", @@ -21049,7 +20270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.156Z", @@ -21076,7 +20296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.156Z", @@ -21103,7 +20322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.156Z", @@ -21130,7 +20348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.156Z", @@ -21157,7 +20374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.156Z", @@ -21184,7 +20400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.156Z", @@ -21211,7 +20426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.156Z", @@ -21238,7 +20452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.156Z", @@ -21265,7 +20478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.156Z", @@ -21292,7 +20504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.156Z", @@ -21319,7 +20530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.157Z", @@ -21346,7 +20556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.157Z", @@ -21373,7 +20582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.157Z", @@ -21400,7 +20608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.157Z", @@ -21427,7 +20634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.157Z", @@ -21454,7 +20660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.157Z", @@ -21481,7 +20686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.157Z", @@ -21508,7 +20712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.157Z", @@ -21535,7 +20738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.157Z", @@ -21562,7 +20764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.157Z", @@ -21589,7 +20790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.157Z", @@ -21616,7 +20816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.157Z", @@ -21643,7 +20842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.157Z", @@ -21670,7 +20868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.157Z", @@ -21697,7 +20894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.157Z", @@ -21724,7 +20920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.157Z", @@ -21751,7 +20946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.157Z", @@ -21778,7 +20972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.158Z", @@ -21805,7 +20998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.158Z", @@ -21832,7 +21024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.158Z", @@ -21859,7 +21050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.158Z", @@ -21886,7 +21076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.158Z", @@ -21913,7 +21102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.158Z", @@ -21940,7 +21128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.158Z", @@ -21967,7 +21154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.158Z", @@ -21994,7 +21180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.158Z", @@ -22021,7 +21206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.158Z", @@ -22048,7 +21232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.159Z", @@ -22075,7 +21258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.159Z", @@ -22102,7 +21284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.159Z", @@ -22129,7 +21310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.159Z", @@ -22156,7 +21336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.159Z", @@ -22183,7 +21362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.159Z", @@ -22210,7 +21388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.159Z", @@ -22237,7 +21414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.159Z", @@ -22264,7 +21440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.159Z", @@ -22291,7 +21466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.159Z", @@ -22318,7 +21492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.159Z", @@ -22345,7 +21518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.159Z", @@ -22372,7 +21544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.159Z", @@ -22399,7 +21570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.159Z", @@ -22426,7 +21596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.159Z", @@ -22453,7 +21622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.159Z", @@ -22480,7 +21648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.159Z", @@ -22507,7 +21674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.159Z", @@ -22534,7 +21700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.159Z", @@ -22561,7 +21726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.160Z", @@ -22588,7 +21752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.160Z", @@ -22615,7 +21778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.160Z", @@ -22642,7 +21804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.160Z", @@ -22669,7 +21830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.160Z", @@ -22696,7 +21856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.160Z", @@ -22723,7 +21882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.160Z", @@ -22750,7 +21908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.160Z", @@ -22777,7 +21934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.160Z", @@ -22804,7 +21960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.160Z", @@ -22831,7 +21986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.160Z", @@ -22858,7 +22012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.160Z", @@ -22885,7 +22038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.160Z", @@ -22912,7 +22064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.160Z", @@ -22939,7 +22090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.160Z", @@ -22966,7 +22116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.160Z", @@ -22993,7 +22142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.160Z", @@ -23020,7 +22168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.160Z", @@ -23047,7 +22194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.161Z", @@ -23074,7 +22220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.161Z", @@ -23101,7 +22246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.161Z", @@ -23128,7 +22272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.161Z", @@ -23155,7 +22298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.161Z", @@ -23182,7 +22324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.161Z", @@ -23209,7 +22350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.161Z", @@ -23236,7 +22376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.161Z", @@ -23263,7 +22402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.161Z", @@ -23290,7 +22428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.161Z", @@ -23317,7 +22454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.161Z", @@ -23344,7 +22480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.161Z", @@ -23371,7 +22506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.161Z", @@ -23398,7 +22532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.161Z", @@ -23425,7 +22558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.161Z", @@ -23452,7 +22584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.161Z", @@ -23479,7 +22610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.162Z", @@ -23506,7 +22636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.162Z", @@ -23533,7 +22662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.162Z", @@ -23560,7 +22688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.162Z", @@ -23587,7 +22714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.162Z", @@ -23614,7 +22740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.162Z", @@ -23641,7 +22766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.162Z", @@ -23668,7 +22792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.162Z", @@ -23695,7 +22818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.162Z", @@ -23722,7 +22844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.162Z", @@ -23749,7 +22870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.162Z", @@ -23776,7 +22896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.162Z", @@ -23803,7 +22922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.162Z", @@ -23830,7 +22948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.162Z", @@ -23857,7 +22974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.162Z", @@ -23884,7 +23000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.162Z", @@ -23911,7 +23026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.162Z", @@ -23938,7 +23052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.162Z", @@ -23965,7 +23078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.163Z", @@ -23992,7 +23104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.163Z", @@ -24019,7 +23130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.163Z", @@ -24046,7 +23156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.163Z", @@ -24073,7 +23182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.163Z", @@ -24100,7 +23208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.163Z", @@ -24127,7 +23234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.163Z", @@ -24154,7 +23260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.163Z", @@ -24181,7 +23286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.163Z", @@ -24208,7 +23312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.163Z", @@ -24235,7 +23338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.163Z", @@ -24262,7 +23364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.163Z", @@ -24289,7 +23390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.163Z", @@ -24316,7 +23416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.163Z", @@ -24343,7 +23442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.163Z", @@ -24370,7 +23468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.163Z", @@ -24397,7 +23494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.163Z", @@ -24424,7 +23520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.163Z", @@ -24451,7 +23546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.164Z", @@ -24478,7 +23572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.164Z", @@ -24505,7 +23598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.164Z", @@ -24532,7 +23624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.164Z", @@ -24559,7 +23650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.164Z", @@ -24586,7 +23676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.164Z", @@ -24613,7 +23702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.164Z", @@ -24640,7 +23728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.164Z", @@ -24667,7 +23754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.164Z", @@ -24694,7 +23780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.164Z", @@ -24721,7 +23806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.164Z", @@ -24748,7 +23832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.164Z", @@ -24775,7 +23858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.164Z", @@ -24802,7 +23884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.164Z", @@ -24829,7 +23910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.165Z", @@ -24856,7 +23936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.165Z", @@ -24883,7 +23962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.165Z", @@ -24910,7 +23988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.165Z", @@ -24937,7 +24014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.165Z", @@ -24964,7 +24040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.165Z", @@ -24991,7 +24066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.165Z", @@ -25018,7 +24092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.165Z", @@ -25045,7 +24118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.165Z", @@ -25072,7 +24144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.165Z", @@ -25099,7 +24170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.165Z", @@ -25126,7 +24196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.165Z", @@ -25153,7 +24222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.165Z", @@ -25180,7 +24248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.165Z", @@ -25207,7 +24274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.165Z", @@ -25234,7 +24300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.165Z", @@ -25261,7 +24326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.165Z", @@ -25288,7 +24352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.165Z", @@ -25315,7 +24378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.166Z", @@ -25342,7 +24404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.166Z", @@ -25369,7 +24430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.166Z", @@ -25396,7 +24456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.166Z", @@ -25423,7 +24482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.166Z", @@ -25450,7 +24508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.166Z", @@ -25477,7 +24534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.166Z", @@ -25504,7 +24560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.166Z", @@ -25531,7 +24586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.166Z", @@ -25558,7 +24612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.166Z", @@ -25585,7 +24638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.166Z", @@ -25612,7 +24664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.166Z", @@ -25639,7 +24690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.166Z", @@ -25666,7 +24716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.166Z", @@ -25693,7 +24742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.166Z", @@ -25720,7 +24768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.166Z", @@ -25747,7 +24794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.166Z", @@ -25774,7 +24820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.166Z", @@ -25801,7 +24846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.167Z", @@ -25828,7 +24872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.167Z", @@ -25855,7 +24898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.167Z", @@ -25882,7 +24924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.167Z", @@ -25909,7 +24950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.167Z", @@ -25936,7 +24976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.167Z", @@ -25963,7 +25002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.167Z", @@ -25990,7 +25028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.167Z", @@ -26017,7 +25054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.167Z", @@ -26044,7 +25080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.167Z", @@ -26071,7 +25106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.167Z", @@ -26098,7 +25132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.168Z", @@ -26125,7 +25158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.168Z", @@ -26152,7 +25184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.168Z", @@ -26179,7 +25210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.168Z", @@ -26206,7 +25236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.168Z", @@ -26233,7 +25262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.168Z", @@ -26260,7 +25288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.168Z", @@ -26287,7 +25314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.168Z", @@ -26314,7 +25340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.168Z", @@ -26341,7 +25366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.168Z", @@ -26368,7 +25392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.168Z", @@ -26395,7 +25418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.168Z", @@ -26422,7 +25444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.169Z", @@ -26449,7 +25470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.169Z", @@ -26476,7 +25496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.169Z", @@ -26503,7 +25522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.169Z", @@ -26530,7 +25548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.169Z", @@ -26557,7 +25574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.169Z", @@ -26584,7 +25600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.169Z", @@ -26611,7 +25626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.169Z", @@ -26638,7 +25652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.169Z", @@ -26665,7 +25678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.169Z", @@ -26692,7 +25704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.169Z", @@ -26719,7 +25730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.169Z", @@ -26746,7 +25756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.169Z", @@ -26773,7 +25782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.169Z", @@ -26800,7 +25808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.169Z", @@ -26827,7 +25834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.170Z", @@ -26854,7 +25860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.170Z", @@ -26881,7 +25886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.170Z", @@ -26908,7 +25912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.170Z", @@ -26935,7 +25938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.170Z", @@ -26962,7 +25964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.170Z", @@ -26989,7 +25990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.170Z", @@ -27016,7 +26016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.170Z", @@ -27043,7 +26042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.170Z", @@ -27070,7 +26068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.171Z", @@ -27097,7 +26094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.171Z", @@ -27124,7 +26120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.171Z", @@ -27151,7 +26146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.171Z", @@ -27178,7 +26172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.171Z", @@ -27205,7 +26198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.171Z", @@ -27232,7 +26224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.171Z", @@ -27259,7 +26250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.171Z", @@ -27286,7 +26276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.171Z", @@ -27313,7 +26302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.172Z", @@ -27340,7 +26328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.172Z", @@ -27367,7 +26354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.172Z", @@ -27394,7 +26380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.172Z", @@ -27421,7 +26406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.172Z", @@ -27448,7 +26432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.172Z", @@ -27475,7 +26458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.172Z", @@ -27502,7 +26484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.172Z", @@ -27529,7 +26510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.172Z", @@ -27556,7 +26536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.172Z", @@ -27583,7 +26562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.172Z", @@ -27610,7 +26588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.172Z", @@ -27637,7 +26614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.173Z", @@ -27664,7 +26640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.173Z", @@ -27691,7 +26666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.173Z", @@ -27718,7 +26692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.173Z", @@ -27745,7 +26718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.173Z", @@ -27772,7 +26744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.173Z", @@ -27799,7 +26770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.173Z", @@ -27826,7 +26796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.173Z", @@ -27853,7 +26822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.173Z", @@ -27880,7 +26848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.173Z", @@ -27907,7 +26874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.173Z", @@ -27934,7 +26900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.173Z", @@ -27961,7 +26926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.173Z", @@ -27988,7 +26952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.173Z", @@ -28015,7 +26978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.173Z", @@ -28042,7 +27004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.173Z", @@ -28069,7 +27030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.173Z", @@ -28096,7 +27056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.174Z", @@ -28123,7 +27082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.174Z", @@ -28150,7 +27108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.174Z", @@ -28177,7 +27134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.174Z", @@ -28204,7 +27160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.174Z", @@ -28231,7 +27186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.174Z", @@ -28258,7 +27212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.174Z", @@ -28285,7 +27238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.174Z", @@ -28312,7 +27264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.174Z", @@ -28339,7 +27290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:24:46.174Z", @@ -28364,7 +27314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.331Z", @@ -28391,7 +27340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.404Z", @@ -28418,7 +27366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.404Z", @@ -28445,7 +27392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.404Z", @@ -28472,7 +27418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.404Z", @@ -28499,7 +27444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.404Z", @@ -28526,7 +27470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.405Z", @@ -28553,7 +27496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.405Z", @@ -28580,7 +27522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.405Z", @@ -28607,7 +27548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.405Z", @@ -28634,7 +27574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.405Z", @@ -28661,7 +27600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.405Z", @@ -28688,7 +27626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.405Z", @@ -28715,7 +27652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.405Z", @@ -28742,7 +27678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.405Z", @@ -28769,7 +27704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.405Z", @@ -28796,7 +27730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.405Z", @@ -28823,7 +27756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.405Z", @@ -28850,7 +27782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.405Z", @@ -28877,7 +27808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.405Z", @@ -28904,7 +27834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.406Z", @@ -28931,7 +27860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.406Z", @@ -28958,7 +27886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.406Z", @@ -28985,7 +27912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.406Z", @@ -29012,7 +27938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.406Z", @@ -29039,7 +27964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.406Z", @@ -29066,7 +27990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.406Z", @@ -29093,7 +28016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.406Z", @@ -29120,7 +28042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.406Z", @@ -29147,7 +28068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.406Z", @@ -29174,7 +28094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.406Z", @@ -29201,7 +28120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.406Z", @@ -29228,7 +28146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.406Z", @@ -29255,7 +28172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.406Z", @@ -29282,7 +28198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.407Z", @@ -29309,7 +28224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.407Z", @@ -29336,7 +28250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.407Z", @@ -29363,7 +28276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.407Z", @@ -29390,7 +28302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.407Z", @@ -29417,7 +28328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.407Z", @@ -29444,7 +28354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.407Z", @@ -29471,7 +28380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.407Z", @@ -29498,7 +28406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.407Z", @@ -29525,7 +28432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.407Z", @@ -29552,7 +28458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.407Z", @@ -29579,7 +28484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.407Z", @@ -29606,7 +28510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.407Z", @@ -29633,7 +28536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.407Z", @@ -29660,7 +28562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.407Z", @@ -29687,7 +28588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.408Z", @@ -29714,7 +28614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.408Z", @@ -29741,7 +28640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.408Z", @@ -29768,7 +28666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.408Z", @@ -29795,7 +28692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.408Z", @@ -29822,7 +28718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.408Z", @@ -29849,7 +28744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.408Z", @@ -29876,7 +28770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.408Z", @@ -29903,7 +28796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.408Z", @@ -29930,7 +28822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.408Z", @@ -29957,7 +28848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.408Z", @@ -29984,7 +28874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.408Z", @@ -30011,7 +28900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.408Z", @@ -30038,7 +28926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.408Z", @@ -30065,7 +28952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.408Z", @@ -30092,7 +28978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.409Z", @@ -30119,7 +29004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.409Z", @@ -30146,7 +29030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.409Z", @@ -30173,7 +29056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.409Z", @@ -30200,7 +29082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.409Z", @@ -30227,7 +29108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.409Z", @@ -30254,7 +29134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.409Z", @@ -30281,7 +29160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.409Z", @@ -30308,7 +29186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.409Z", @@ -30335,7 +29212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.409Z", @@ -30362,7 +29238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.409Z", @@ -30389,7 +29264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.409Z", @@ -30416,7 +29290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.409Z", @@ -30443,7 +29316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.409Z", @@ -30470,7 +29342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.409Z", @@ -30497,7 +29368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.410Z", @@ -30524,7 +29394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.410Z", @@ -30551,7 +29420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.410Z", @@ -30578,7 +29446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.410Z", @@ -30605,7 +29472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.410Z", @@ -30632,7 +29498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.410Z", @@ -30659,7 +29524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.410Z", @@ -30686,7 +29550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.410Z", @@ -30713,7 +29576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.410Z", @@ -30740,7 +29602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.410Z", @@ -30767,7 +29628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.410Z", @@ -30794,7 +29654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.410Z", @@ -30821,7 +29680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.410Z", @@ -30848,7 +29706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.410Z", @@ -30875,7 +29732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.410Z", @@ -30902,7 +29758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.411Z", @@ -30929,7 +29784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.411Z", @@ -30956,7 +29810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.411Z", @@ -30983,7 +29836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.411Z", @@ -31010,7 +29862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.411Z", @@ -31037,7 +29888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.411Z", @@ -31064,7 +29914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.411Z", @@ -31091,7 +29940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.411Z", @@ -31118,7 +29966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.411Z", @@ -31145,7 +29992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.411Z", @@ -31172,7 +30018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.411Z", @@ -31199,7 +30044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:26:44.411Z", @@ -31224,7 +30068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.063Z", @@ -31251,7 +30094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.388Z", @@ -31278,7 +30120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.388Z", @@ -31305,7 +30146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.388Z", @@ -31332,7 +30172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.388Z", @@ -31359,7 +30198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.388Z", @@ -31386,7 +30224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.389Z", @@ -31413,7 +30250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.389Z", @@ -31440,7 +30276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.389Z", @@ -31467,7 +30302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.389Z", @@ -31494,7 +30328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.389Z", @@ -31521,7 +30354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.389Z", @@ -31548,7 +30380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.389Z", @@ -31575,7 +30406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.389Z", @@ -31602,7 +30432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.389Z", @@ -31629,7 +30458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.389Z", @@ -31656,7 +30484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.389Z", @@ -31683,7 +30510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.390Z", @@ -31710,7 +30536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.390Z", @@ -31737,7 +30562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.390Z", @@ -31764,7 +30588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.390Z", @@ -31791,7 +30614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.390Z", @@ -31818,7 +30640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.390Z", @@ -31845,7 +30666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.390Z", @@ -31872,7 +30692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.390Z", @@ -31899,7 +30718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.390Z", @@ -31926,7 +30744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.390Z", @@ -31953,7 +30770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.390Z", @@ -31980,7 +30796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.390Z", @@ -32007,7 +30822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.390Z", @@ -32034,7 +30848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.390Z", @@ -32061,7 +30874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.391Z", @@ -32088,7 +30900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.391Z", @@ -32115,7 +30926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.391Z", @@ -32142,7 +30952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.391Z", @@ -32169,7 +30978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.391Z", @@ -32196,7 +31004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.391Z", @@ -32223,7 +31030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.391Z", @@ -32250,7 +31056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.391Z", @@ -32277,7 +31082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.391Z", @@ -32304,7 +31108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.391Z", @@ -32331,7 +31134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.391Z", @@ -32358,7 +31160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.391Z", @@ -32385,7 +31186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.391Z", @@ -32412,7 +31212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.391Z", @@ -32439,7 +31238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.391Z", @@ -32466,7 +31264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.391Z", @@ -32493,7 +31290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.391Z", @@ -32520,7 +31316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.392Z", @@ -32547,7 +31342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.392Z", @@ -32574,7 +31368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.392Z", @@ -32601,7 +31394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.392Z", @@ -32628,7 +31420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.392Z", @@ -32655,7 +31446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.392Z", @@ -32682,7 +31472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.392Z", @@ -32709,7 +31498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.392Z", @@ -32736,7 +31524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.392Z", @@ -32763,7 +31550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.392Z", @@ -32790,7 +31576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.392Z", @@ -32817,7 +31602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.392Z", @@ -32844,7 +31628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.392Z", @@ -32871,7 +31654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.392Z", @@ -32898,7 +31680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.393Z", @@ -32925,7 +31706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.393Z", @@ -32952,7 +31732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.393Z", @@ -32979,7 +31758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.393Z", @@ -33006,7 +31784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.393Z", @@ -33033,7 +31810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.393Z", @@ -33060,7 +31836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.393Z", @@ -33087,7 +31862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.393Z", @@ -33114,7 +31888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.393Z", @@ -33141,7 +31914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.393Z", @@ -33168,7 +31940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.393Z", @@ -33195,7 +31966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.393Z", @@ -33222,7 +31992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.393Z", @@ -33249,7 +32018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.393Z", @@ -33276,7 +32044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.393Z", @@ -33303,7 +32070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.394Z", @@ -33330,7 +32096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.394Z", @@ -33357,7 +32122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.394Z", @@ -33384,7 +32148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.394Z", @@ -33411,7 +32174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.394Z", @@ -33438,7 +32200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.394Z", @@ -33465,7 +32226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.394Z", @@ -33492,7 +32252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.394Z", @@ -33519,7 +32278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.394Z", @@ -33546,7 +32304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.394Z", @@ -33573,7 +32330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.394Z", @@ -33600,7 +32356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.394Z", @@ -33627,7 +32382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.394Z", @@ -33654,7 +32408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.394Z", @@ -33681,7 +32434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.394Z", @@ -33708,7 +32460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.394Z", @@ -33735,7 +32486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.394Z", @@ -33762,7 +32512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.395Z", @@ -33789,7 +32538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.395Z", @@ -33816,7 +32564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.395Z", @@ -33843,7 +32590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.395Z", @@ -33870,7 +32616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.395Z", @@ -33897,7 +32642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.395Z", @@ -33924,7 +32668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.395Z", @@ -33951,7 +32694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.395Z", @@ -33978,7 +32720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.395Z", @@ -34005,7 +32746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.395Z", @@ -34032,7 +32772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.395Z", @@ -34059,7 +32798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.395Z", @@ -34086,7 +32824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.395Z", @@ -34113,7 +32850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.395Z", @@ -34140,7 +32876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.395Z", @@ -34167,7 +32902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.395Z", @@ -34194,7 +32928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.396Z", @@ -34221,7 +32954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.396Z", @@ -34248,7 +32980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.396Z", @@ -34275,7 +33006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.396Z", @@ -34302,7 +33032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.396Z", @@ -34329,7 +33058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.396Z", @@ -34356,7 +33084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.396Z", @@ -34383,7 +33110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.396Z", @@ -34410,7 +33136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.396Z", @@ -34437,7 +33162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.396Z", @@ -34464,7 +33188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.396Z", @@ -34491,7 +33214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.396Z", @@ -34518,7 +33240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.396Z", @@ -34545,7 +33266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.396Z", @@ -34572,7 +33292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.396Z", @@ -34599,7 +33318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.397Z", @@ -34626,7 +33344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.397Z", @@ -34653,7 +33370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.397Z", @@ -34680,7 +33396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.397Z", @@ -34707,7 +33422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.397Z", @@ -34734,7 +33448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.397Z", @@ -34761,7 +33474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.397Z", @@ -34788,7 +33500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.397Z", @@ -34815,7 +33526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.397Z", @@ -34842,7 +33552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.397Z", @@ -34869,7 +33578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.397Z", @@ -34896,7 +33604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.397Z", @@ -34923,7 +33630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.397Z", @@ -34950,7 +33656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.397Z", @@ -34977,7 +33682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.398Z", @@ -35004,7 +33708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.398Z", @@ -35031,7 +33734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.398Z", @@ -35058,7 +33760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.398Z", @@ -35085,7 +33786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.398Z", @@ -35112,7 +33812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.398Z", @@ -35139,7 +33838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.398Z", @@ -35166,7 +33864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.398Z", @@ -35193,7 +33890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.398Z", @@ -35220,7 +33916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.398Z", @@ -35247,7 +33942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.398Z", @@ -35274,7 +33968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.398Z", @@ -35301,7 +33994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.398Z", @@ -35328,7 +34020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.398Z", @@ -35355,7 +34046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.399Z", @@ -35382,7 +34072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.399Z", @@ -35409,7 +34098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.399Z", @@ -35436,7 +34124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.399Z", @@ -35463,7 +34150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.399Z", @@ -35490,7 +34176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.399Z", @@ -35517,7 +34202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.399Z", @@ -35544,7 +34228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.399Z", @@ -35571,7 +34254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.399Z", @@ -35598,7 +34280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.399Z", @@ -35625,7 +34306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.399Z", @@ -35652,7 +34332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.399Z", @@ -35679,7 +34358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.400Z", @@ -35706,7 +34384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.400Z", @@ -35733,7 +34410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.400Z", @@ -35760,7 +34436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.400Z", @@ -35787,7 +34462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.400Z", @@ -35814,7 +34488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.400Z", @@ -35841,7 +34514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.400Z", @@ -35868,7 +34540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.400Z", @@ -35895,7 +34566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.400Z", @@ -35922,7 +34592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.400Z", @@ -35949,7 +34618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.401Z", @@ -35976,7 +34644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.401Z", @@ -36003,7 +34670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.401Z", @@ -36030,7 +34696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.401Z", @@ -36057,7 +34722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.401Z", @@ -36084,7 +34748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.401Z", @@ -36111,7 +34774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.401Z", @@ -36138,7 +34800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.401Z", @@ -36165,7 +34826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.401Z", @@ -36192,7 +34852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.401Z", @@ -36219,7 +34878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.401Z", @@ -36246,7 +34904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.402Z", @@ -36273,7 +34930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.402Z", @@ -36300,7 +34956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.402Z", @@ -36327,7 +34982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.402Z", @@ -36354,7 +35008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.402Z", @@ -36381,7 +35034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.402Z", @@ -36408,7 +35060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.402Z", @@ -36435,7 +35086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.402Z", @@ -36462,7 +35112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.402Z", @@ -36489,7 +35138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.402Z", @@ -36516,7 +35164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.402Z", @@ -36543,7 +35190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.402Z", @@ -36570,7 +35216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.402Z", @@ -36597,7 +35242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.402Z", @@ -36624,7 +35268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.402Z", @@ -36651,7 +35294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.403Z", @@ -36678,7 +35320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.403Z", @@ -36705,7 +35346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.403Z", @@ -36732,7 +35372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.403Z", @@ -36759,7 +35398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.403Z", @@ -36786,7 +35424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.403Z", @@ -36813,7 +35450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.403Z", @@ -36840,7 +35476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.403Z", @@ -36867,7 +35502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.403Z", @@ -36894,7 +35528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.403Z", @@ -36921,7 +35554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.403Z", @@ -36948,7 +35580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.403Z", @@ -36975,7 +35606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.403Z", @@ -37002,7 +35632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.403Z", @@ -37029,7 +35658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.403Z", @@ -37056,7 +35684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.404Z", @@ -37083,7 +35710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.404Z", @@ -37110,7 +35736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.404Z", @@ -37137,7 +35762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.404Z", @@ -37164,7 +35788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.404Z", @@ -37191,7 +35814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.404Z", @@ -37218,7 +35840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.404Z", @@ -37245,7 +35866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.404Z", @@ -37272,7 +35892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.404Z", @@ -37299,7 +35918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.404Z", @@ -37326,7 +35944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.404Z", @@ -37353,7 +35970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.404Z", @@ -37380,7 +35996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.404Z", @@ -37407,7 +36022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.404Z", @@ -37434,7 +36048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.404Z", @@ -37461,7 +36074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.404Z", @@ -37488,7 +36100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.405Z", @@ -37515,7 +36126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.405Z", @@ -37542,7 +36152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.405Z", @@ -37569,7 +36178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.405Z", @@ -37596,7 +36204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.405Z", @@ -37623,7 +36230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.405Z", @@ -37650,7 +36256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.405Z", @@ -37677,7 +36282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.405Z", @@ -37704,7 +36308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.405Z", @@ -37731,7 +36334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.405Z", @@ -37758,7 +36360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.405Z", @@ -37785,7 +36386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.405Z", @@ -37812,7 +36412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.405Z", @@ -37839,7 +36438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.405Z", @@ -37866,7 +36464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.406Z", @@ -37893,7 +36490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.406Z", @@ -37920,7 +36516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.406Z", @@ -37947,7 +36542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.406Z", @@ -37974,7 +36568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.406Z", @@ -38001,7 +36594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.406Z", @@ -38028,7 +36620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.406Z", @@ -38055,7 +36646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.406Z", @@ -38082,7 +36672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.406Z", @@ -38109,7 +36698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.406Z", @@ -38136,7 +36724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.406Z", @@ -38163,7 +36750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.406Z", @@ -38190,7 +36776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.406Z", @@ -38217,7 +36802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.406Z", @@ -38244,7 +36828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.406Z", @@ -38271,7 +36854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.407Z", @@ -38298,7 +36880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.407Z", @@ -38325,7 +36906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.407Z", @@ -38352,7 +36932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.407Z", @@ -38379,7 +36958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.407Z", @@ -38406,7 +36984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.407Z", @@ -38433,7 +37010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.407Z", @@ -38460,7 +37036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.407Z", @@ -38487,7 +37062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.407Z", @@ -38514,7 +37088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.407Z", @@ -38541,7 +37114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.407Z", @@ -38568,7 +37140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.407Z", @@ -38595,7 +37166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.407Z", @@ -38622,7 +37192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.407Z", @@ -38649,7 +37218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.408Z", @@ -38676,7 +37244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.408Z", @@ -38703,7 +37270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.408Z", @@ -38730,7 +37296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.408Z", @@ -38757,7 +37322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.408Z", @@ -38784,7 +37348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.408Z", @@ -38811,7 +37374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.408Z", @@ -38838,7 +37400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.408Z", @@ -38865,7 +37426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.408Z", @@ -38892,7 +37452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.408Z", @@ -38919,7 +37478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.408Z", @@ -38946,7 +37504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.408Z", @@ -38973,7 +37530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.408Z", @@ -39000,7 +37556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.408Z", @@ -39027,7 +37582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.408Z", @@ -39054,7 +37608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.408Z", @@ -39081,7 +37634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.409Z", @@ -39108,7 +37660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.409Z", @@ -39135,7 +37686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.409Z", @@ -39162,7 +37712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.409Z", @@ -39189,7 +37738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.409Z", @@ -39216,7 +37764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.409Z", @@ -39243,7 +37790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.409Z", @@ -39270,7 +37816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.409Z", @@ -39297,7 +37842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.409Z", @@ -39324,7 +37868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.409Z", @@ -39351,7 +37894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.409Z", @@ -39378,7 +37920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.409Z", @@ -39405,7 +37946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.409Z", @@ -39432,7 +37972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.409Z", @@ -39459,7 +37998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.409Z", @@ -39486,7 +38024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.410Z", @@ -39513,7 +38050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.410Z", @@ -39540,7 +38076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.410Z", @@ -39567,7 +38102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.410Z", @@ -39594,7 +38128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.410Z", @@ -39621,7 +38154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.410Z", @@ -39648,7 +38180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.410Z", @@ -39675,7 +38206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.410Z", @@ -39702,7 +38232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.410Z", @@ -39729,7 +38258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.410Z", @@ -39756,7 +38284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.410Z", @@ -39783,7 +38310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.410Z", @@ -39810,7 +38336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.410Z", @@ -39837,7 +38362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.410Z", @@ -39864,7 +38388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.410Z", @@ -39891,7 +38414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.410Z", @@ -39918,7 +38440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.411Z", @@ -39945,7 +38466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.411Z", @@ -39972,7 +38492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.411Z", @@ -39999,7 +38518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.411Z", @@ -40026,7 +38544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.411Z", @@ -40053,7 +38570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.411Z", @@ -40080,7 +38596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.411Z", @@ -40107,7 +38622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.411Z", @@ -40134,7 +38648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.411Z", @@ -40161,7 +38674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.411Z", @@ -40188,7 +38700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.411Z", @@ -40215,7 +38726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.411Z", @@ -40242,7 +38752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.411Z", @@ -40269,7 +38778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.411Z", @@ -40296,7 +38804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.411Z", @@ -40323,7 +38830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.411Z", @@ -40350,7 +38856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.412Z", @@ -40377,7 +38882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.412Z", @@ -40404,7 +38908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.412Z", @@ -40431,7 +38934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.412Z", @@ -40458,7 +38960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.412Z", @@ -40485,7 +38986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.412Z", @@ -40512,7 +39012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.412Z", @@ -40539,7 +39038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.412Z", @@ -40566,7 +39064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.412Z", @@ -40593,7 +39090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.412Z", @@ -40620,7 +39116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.412Z", @@ -40647,7 +39142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.412Z", @@ -40674,7 +39168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.412Z", @@ -40701,7 +39194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.412Z", @@ -40728,7 +39220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.412Z", @@ -40755,7 +39246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -40782,7 +39272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -40809,7 +39298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -40836,7 +39324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -40863,7 +39350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -40890,7 +39376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -40917,7 +39402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -40944,7 +39428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -40971,7 +39454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -40998,7 +39480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -41025,7 +39506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -41052,7 +39532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -41079,7 +39558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -41106,7 +39584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -41133,7 +39610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -41160,7 +39636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -41187,7 +39662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -41214,7 +39688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -41241,7 +39714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -41268,7 +39740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -41295,7 +39766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -41322,7 +39792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -41349,7 +39818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -41376,7 +39844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.413Z", @@ -41403,7 +39870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -41430,7 +39896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -41457,7 +39922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -41484,7 +39948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -41511,7 +39974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -41538,7 +40000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -41565,7 +40026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -41592,7 +40052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -41619,7 +40078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -41646,7 +40104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -41673,7 +40130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -41700,7 +40156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -41727,7 +40182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -41754,7 +40208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -41781,7 +40234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -41808,7 +40260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -41835,7 +40286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -41862,7 +40312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -41889,7 +40338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -41916,7 +40364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -41943,7 +40390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -41970,7 +40416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -41997,7 +40442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -42024,7 +40468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -42051,7 +40494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -42078,7 +40520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -42105,7 +40546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -42132,7 +40572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -42159,7 +40598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -42186,7 +40624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.414Z", @@ -42213,7 +40650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42240,7 +40676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42267,7 +40702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42294,7 +40728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42321,7 +40754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42348,7 +40780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42375,7 +40806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42402,7 +40832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42429,7 +40858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42456,7 +40884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42483,7 +40910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42510,7 +40936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42537,7 +40962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42564,7 +40988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42591,7 +41014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42618,7 +41040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42645,7 +41066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42672,7 +41092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42699,7 +41118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42726,7 +41144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42753,7 +41170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42780,7 +41196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42807,7 +41222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42834,7 +41248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.415Z", @@ -42861,7 +41274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.416Z", @@ -42888,7 +41300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.416Z", @@ -42915,7 +41326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.416Z", @@ -42942,7 +41352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.416Z", @@ -42969,7 +41378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.416Z", @@ -42996,7 +41404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.416Z", @@ -43023,7 +41430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.416Z", @@ -43050,7 +41456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.416Z", @@ -43077,7 +41482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.416Z", @@ -43104,7 +41508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.416Z", @@ -43131,7 +41534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.416Z", @@ -43158,7 +41560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.416Z", @@ -43185,7 +41586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.416Z", @@ -43212,7 +41612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.416Z", @@ -43239,7 +41638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.416Z", @@ -43266,7 +41664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.416Z", @@ -43293,7 +41690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.417Z", @@ -43320,7 +41716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.417Z", @@ -43347,7 +41742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.417Z", @@ -43374,7 +41768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.417Z", @@ -43401,7 +41794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.417Z", @@ -43428,7 +41820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.417Z", @@ -43455,7 +41846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.417Z", @@ -43482,7 +41872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.417Z", @@ -43509,7 +41898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.417Z", @@ -43536,7 +41924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.417Z", @@ -43563,7 +41950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.417Z", @@ -43590,7 +41976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.417Z", @@ -43617,7 +42002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.417Z", @@ -43644,7 +42028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.417Z", @@ -43671,7 +42054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.418Z", @@ -43698,7 +42080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.418Z", @@ -43725,7 +42106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.418Z", @@ -43752,7 +42132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.418Z", @@ -43779,7 +42158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.418Z", @@ -43806,7 +42184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.418Z", @@ -43833,7 +42210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.418Z", @@ -43860,7 +42236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.418Z", @@ -43887,7 +42262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.418Z", @@ -43914,7 +42288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.418Z", @@ -43941,7 +42314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.418Z", @@ -43968,7 +42340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.418Z", @@ -43995,7 +42366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.418Z", @@ -44022,7 +42392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.418Z", @@ -44049,7 +42418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.418Z", @@ -44076,7 +42444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.418Z", @@ -44103,7 +42470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.418Z", @@ -44130,7 +42496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.418Z", @@ -44157,7 +42522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.418Z", @@ -44184,7 +42548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.418Z", @@ -44211,7 +42574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.418Z", @@ -44238,7 +42600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44265,7 +42626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44292,7 +42652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44319,7 +42678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44346,7 +42704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44373,7 +42730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44400,7 +42756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44427,7 +42782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44454,7 +42808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44481,7 +42834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44508,7 +42860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44535,7 +42886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44562,7 +42912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44589,7 +42938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44616,7 +42964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44643,7 +42990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44670,7 +43016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44697,7 +43042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44724,7 +43068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44751,7 +43094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44778,7 +43120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44805,7 +43146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44832,7 +43172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44859,7 +43198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44886,7 +43224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44913,7 +43250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44940,7 +43276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44967,7 +43302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -44994,7 +43328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -45021,7 +43354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.419Z", @@ -45048,7 +43380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.420Z", @@ -45075,7 +43406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.420Z", @@ -45102,7 +43432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.420Z", @@ -45129,7 +43458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.420Z", @@ -45156,7 +43484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.420Z", @@ -45183,7 +43510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.420Z", @@ -45210,7 +43536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.420Z", @@ -45237,7 +43562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.420Z", @@ -45264,7 +43588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.420Z", @@ -45291,7 +43614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.420Z", @@ -45318,7 +43640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.420Z", @@ -45345,7 +43666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.420Z", @@ -45372,7 +43692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:28:28.420Z", @@ -45397,7 +43716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.865Z", @@ -45424,7 +43742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.940Z", @@ -45451,7 +43768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.940Z", @@ -45478,7 +43794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.940Z", @@ -45505,7 +43820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.940Z", @@ -45532,7 +43846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.940Z", @@ -45559,7 +43872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.940Z", @@ -45586,7 +43898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.940Z", @@ -45613,7 +43924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.940Z", @@ -45640,7 +43950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.940Z", @@ -45667,7 +43976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.940Z", @@ -45694,7 +44002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.940Z", @@ -45721,7 +44028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.940Z", @@ -45748,7 +44054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.940Z", @@ -45775,7 +44080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.940Z", @@ -45802,7 +44106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.940Z", @@ -45829,7 +44132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.940Z", @@ -45856,7 +44158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.941Z", @@ -45883,7 +44184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.941Z", @@ -45910,7 +44210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.941Z", @@ -45937,7 +44236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.941Z", @@ -45964,7 +44262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.941Z", @@ -45991,7 +44288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.941Z", @@ -46018,7 +44314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.941Z", @@ -46045,7 +44340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.941Z", @@ -46072,7 +44366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.941Z", @@ -46099,7 +44392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.941Z", @@ -46126,7 +44418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.941Z", @@ -46153,7 +44444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.941Z", @@ -46180,7 +44470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.942Z", @@ -46207,7 +44496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.942Z", @@ -46234,7 +44522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.942Z", @@ -46261,7 +44548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.942Z", @@ -46288,7 +44574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.942Z", @@ -46315,7 +44600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.942Z", @@ -46342,7 +44626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.942Z", @@ -46369,7 +44652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.942Z", @@ -46396,7 +44678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.942Z", @@ -46423,7 +44704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.942Z", @@ -46450,7 +44730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.942Z", @@ -46477,7 +44756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.942Z", @@ -46504,7 +44782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.942Z", @@ -46531,7 +44808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.943Z", @@ -46558,7 +44834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.943Z", @@ -46585,7 +44860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.943Z", @@ -46612,7 +44886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.943Z", @@ -46639,7 +44912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.943Z", @@ -46666,7 +44938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.943Z", @@ -46693,7 +44964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.943Z", @@ -46720,7 +44990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.943Z", @@ -46747,7 +45016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.943Z", @@ -46774,7 +45042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.943Z", @@ -46801,7 +45068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.943Z", @@ -46828,7 +45094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.943Z", @@ -46855,7 +45120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.943Z", @@ -46882,7 +45146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.943Z", @@ -46909,7 +45172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -46936,7 +45198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -46963,7 +45224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -46990,7 +45250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -47017,7 +45276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -47044,7 +45302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -47071,7 +45328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -47098,7 +45354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -47125,7 +45380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -47152,7 +45406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -47179,7 +45432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -47206,7 +45458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -47233,7 +45484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -47260,7 +45510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -47287,7 +45536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -47314,7 +45562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -47341,7 +45588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -47368,7 +45614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -47395,7 +45640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -47422,7 +45666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -47449,7 +45692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -47476,7 +45718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -47503,7 +45744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -47530,7 +45770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -47557,7 +45796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.944Z", @@ -47584,7 +45822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.945Z", @@ -47611,7 +45848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.945Z", @@ -47638,7 +45874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.945Z", @@ -47665,7 +45900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.945Z", @@ -47692,7 +45926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.945Z", @@ -47719,7 +45952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.945Z", @@ -47746,7 +45978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.945Z", @@ -47773,7 +46004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.945Z", @@ -47800,7 +46030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.945Z", @@ -47827,7 +46056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.945Z", @@ -47854,7 +46082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.945Z", @@ -47881,7 +46108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.945Z", @@ -47908,7 +46134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.945Z", @@ -47935,7 +46160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.945Z", @@ -47962,7 +46186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.945Z", @@ -47989,7 +46212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.945Z", @@ -48016,7 +46238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.945Z", @@ -48043,7 +46264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.945Z", @@ -48070,7 +46290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.945Z", @@ -48097,7 +46316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.945Z", @@ -48124,7 +46342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.945Z", @@ -48151,7 +46368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.948Z", @@ -48178,7 +46394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.948Z", @@ -48205,7 +46420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.948Z", @@ -48232,7 +46446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:30:09.949Z", @@ -48257,7 +46470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:08.914Z", @@ -48284,7 +46496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.144Z", @@ -48311,7 +46522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.144Z", @@ -48338,7 +46548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.144Z", @@ -48365,7 +46574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.144Z", @@ -48392,7 +46600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.144Z", @@ -48419,7 +46626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -48446,7 +46652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -48473,7 +46678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -48500,7 +46704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -48527,7 +46730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -48554,7 +46756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -48581,7 +46782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -48608,7 +46808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -48635,7 +46834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -48662,7 +46860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -48689,7 +46886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -48716,7 +46912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -48743,7 +46938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -48770,7 +46964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -48797,7 +46990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -48824,7 +47016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -48851,7 +47042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -48878,7 +47068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -48905,7 +47094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -48932,7 +47120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -48959,7 +47146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -48986,7 +47172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -49013,7 +47198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -49040,7 +47224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -49067,7 +47250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.145Z", @@ -49094,7 +47276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.146Z", @@ -49121,7 +47302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.146Z", @@ -49148,7 +47328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.146Z", @@ -49175,7 +47354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.146Z", @@ -49202,7 +47380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.146Z", @@ -49229,7 +47406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.146Z", @@ -49256,7 +47432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.146Z", @@ -49283,7 +47458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.146Z", @@ -49310,7 +47484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.146Z", @@ -49337,7 +47510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.146Z", @@ -49364,7 +47536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.146Z", @@ -49391,7 +47562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.146Z", @@ -49418,7 +47588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.146Z", @@ -49445,7 +47614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.146Z", @@ -49472,7 +47640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.146Z", @@ -49499,7 +47666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.146Z", @@ -49526,7 +47692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.146Z", @@ -49553,7 +47718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.146Z", @@ -49580,7 +47744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.146Z", @@ -49607,7 +47770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.146Z", @@ -49634,7 +47796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.146Z", @@ -49661,7 +47822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.146Z", @@ -49688,7 +47848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.146Z", @@ -49715,7 +47874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.147Z", @@ -49742,7 +47900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.147Z", @@ -49769,7 +47926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.147Z", @@ -49796,7 +47952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.147Z", @@ -49823,7 +47978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.147Z", @@ -49850,7 +48004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.147Z", @@ -49877,7 +48030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.147Z", @@ -49904,7 +48056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.147Z", @@ -49931,7 +48082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.147Z", @@ -49958,7 +48108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.147Z", @@ -49985,7 +48134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.147Z", @@ -50012,7 +48160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.147Z", @@ -50039,7 +48186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.147Z", @@ -50066,7 +48212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.147Z", @@ -50093,7 +48238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.147Z", @@ -50120,7 +48264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.147Z", @@ -50147,7 +48290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.147Z", @@ -50174,7 +48316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.147Z", @@ -50201,7 +48342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50228,7 +48368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50255,7 +48394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50282,7 +48420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50309,7 +48446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50336,7 +48472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50363,7 +48498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50390,7 +48524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50417,7 +48550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50444,7 +48576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50471,7 +48602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50498,7 +48628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50525,7 +48654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50552,7 +48680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50579,7 +48706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50606,7 +48732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50633,7 +48758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50660,7 +48784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50687,7 +48810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50714,7 +48836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50741,7 +48862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50768,7 +48888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50795,7 +48914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50822,7 +48940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.148Z", @@ -50849,7 +48966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -50876,7 +48992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -50903,7 +49018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -50930,7 +49044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -50957,7 +49070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -50984,7 +49096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -51011,7 +49122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -51038,7 +49148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -51065,7 +49174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -51092,7 +49200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -51119,7 +49226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -51146,7 +49252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -51173,7 +49278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -51200,7 +49304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -51227,7 +49330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -51254,7 +49356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -51281,7 +49382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -51308,7 +49408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -51335,7 +49434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -51362,7 +49460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -51389,7 +49486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -51416,7 +49512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -51443,7 +49538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -51470,7 +49564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -51497,7 +49590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.149Z", @@ -51524,7 +49616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -51551,7 +49642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -51578,7 +49668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -51605,7 +49694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -51632,7 +49720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -51659,7 +49746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -51686,7 +49772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -51713,7 +49798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -51740,7 +49824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -51767,7 +49850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -51794,7 +49876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -51821,7 +49902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -51848,7 +49928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -51875,7 +49954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -51902,7 +49980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -51929,7 +50006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -51956,7 +50032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -51983,7 +50058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -52010,7 +50084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -52037,7 +50110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -52064,7 +50136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -52091,7 +50162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -52118,7 +50188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -52145,7 +50214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -52172,7 +50240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -52199,7 +50266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.150Z", @@ -52226,7 +50292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.151Z", @@ -52253,7 +50318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.151Z", @@ -52280,7 +50344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.151Z", @@ -52307,7 +50370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.151Z", @@ -52334,7 +50396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.151Z", @@ -52361,7 +50422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.151Z", @@ -52388,7 +50448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.151Z", @@ -52415,7 +50474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.151Z", @@ -52442,7 +50500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.151Z", @@ -52469,7 +50526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.151Z", @@ -52496,7 +50552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.151Z", @@ -52523,7 +50578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.151Z", @@ -52550,7 +50604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.151Z", @@ -52577,7 +50630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.151Z", @@ -52604,7 +50656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.151Z", @@ -52631,7 +50682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.151Z", @@ -52658,7 +50708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.151Z", @@ -52685,7 +50734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.151Z", @@ -52712,7 +50760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.151Z", @@ -52739,7 +50786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.151Z", @@ -52766,7 +50812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.151Z", @@ -52793,7 +50838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.151Z", @@ -52820,7 +50864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -52847,7 +50890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -52874,7 +50916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -52901,7 +50942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -52928,7 +50968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -52955,7 +50994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -52982,7 +51020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -53009,7 +51046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -53036,7 +51072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -53063,7 +51098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -53090,7 +51124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -53117,7 +51150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -53144,7 +51176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -53171,7 +51202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -53198,7 +51228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -53225,7 +51254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -53252,7 +51280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -53279,7 +51306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -53306,7 +51332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -53333,7 +51358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -53360,7 +51384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -53387,7 +51410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -53414,7 +51436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -53441,7 +51462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -53468,7 +51488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -53495,7 +51514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.152Z", @@ -53522,7 +51540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -53549,7 +51566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -53576,7 +51592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -53603,7 +51618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -53630,7 +51644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -53657,7 +51670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -53684,7 +51696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -53711,7 +51722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -53738,7 +51748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -53765,7 +51774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -53792,7 +51800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -53819,7 +51826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -53846,7 +51852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -53873,7 +51878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -53900,7 +51904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -53927,7 +51930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -53954,7 +51956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -53981,7 +51982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -54008,7 +52008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -54035,7 +52034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -54062,7 +52060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -54089,7 +52086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -54116,7 +52112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -54143,7 +52138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -54170,7 +52164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.153Z", @@ -54197,7 +52190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54224,7 +52216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54251,7 +52242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54278,7 +52268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54305,7 +52294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54332,7 +52320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54359,7 +52346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54386,7 +52372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54413,7 +52398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54440,7 +52424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54467,7 +52450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54494,7 +52476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54521,7 +52502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54548,7 +52528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54575,7 +52554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54602,7 +52580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54629,7 +52606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54656,7 +52632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54683,7 +52658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54710,7 +52684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54737,7 +52710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54764,7 +52736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54791,7 +52762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54818,7 +52788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54845,7 +52814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.154Z", @@ -54872,7 +52840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.155Z", @@ -54899,7 +52866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.155Z", @@ -54926,7 +52892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.155Z", @@ -54953,7 +52918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.155Z", @@ -54980,7 +52944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.155Z", @@ -55007,7 +52970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.155Z", @@ -55034,7 +52996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.155Z", @@ -55061,7 +53022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.155Z", @@ -55088,7 +53048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.155Z", @@ -55115,7 +53074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.155Z", @@ -55142,7 +53100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.155Z", @@ -55169,7 +53126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.155Z", @@ -55196,7 +53152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.155Z", @@ -55223,7 +53178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.155Z", @@ -55250,7 +53204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.155Z", @@ -55277,7 +53230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.155Z", @@ -55304,7 +53256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.156Z", @@ -55331,7 +53282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.156Z", @@ -55358,7 +53308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.156Z", @@ -55385,7 +53334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.156Z", @@ -55412,7 +53360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.156Z", @@ -55439,7 +53386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.156Z", @@ -55466,7 +53412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.156Z", @@ -55493,7 +53438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.156Z", @@ -55520,7 +53464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.156Z", @@ -55547,7 +53490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.156Z", @@ -55574,7 +53516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.156Z", @@ -55601,7 +53542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.156Z", @@ -55628,7 +53568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.156Z", @@ -55655,7 +53594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.157Z", @@ -55682,7 +53620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.157Z", @@ -55709,7 +53646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.157Z", @@ -55736,7 +53672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.157Z", @@ -55763,7 +53698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.157Z", @@ -55790,7 +53724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.157Z", @@ -55817,7 +53750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.157Z", @@ -55844,7 +53776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.157Z", @@ -55871,7 +53802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.158Z", @@ -55898,7 +53828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.158Z", @@ -55925,7 +53854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.158Z", @@ -55952,7 +53880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.158Z", @@ -55979,7 +53906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.158Z", @@ -56006,7 +53932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.158Z", @@ -56033,7 +53958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.158Z", @@ -56060,7 +53984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.158Z", @@ -56087,7 +54010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.158Z", @@ -56114,7 +54036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.158Z", @@ -56141,7 +54062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.158Z", @@ -56168,7 +54088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.158Z", @@ -56195,7 +54114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.158Z", @@ -56222,7 +54140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.158Z", @@ -56249,7 +54166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.158Z", @@ -56276,7 +54192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.158Z", @@ -56303,7 +54218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.158Z", @@ -56330,7 +54244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.158Z", @@ -56357,7 +54270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.158Z", @@ -56384,7 +54296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.158Z", @@ -56411,7 +54322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.158Z", @@ -56438,7 +54348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.158Z", @@ -56465,7 +54374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.158Z", @@ -56492,7 +54400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.159Z", @@ -56519,7 +54426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.159Z", @@ -56546,7 +54452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.159Z", @@ -56573,7 +54478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.159Z", @@ -56600,7 +54504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.159Z", @@ -56627,7 +54530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.159Z", @@ -56654,7 +54556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.159Z", @@ -56681,7 +54582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.159Z", @@ -56708,7 +54608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.159Z", @@ -56735,7 +54634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:32:09.159Z", @@ -56760,7 +54658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.770Z", @@ -56787,7 +54684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.869Z", @@ -56814,7 +54710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.869Z", @@ -56841,7 +54736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.869Z", @@ -56868,7 +54762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.869Z", @@ -56895,7 +54788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.869Z", @@ -56922,7 +54814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.869Z", @@ -56949,7 +54840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.869Z", @@ -56976,7 +54866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.869Z", @@ -57003,7 +54892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.870Z", @@ -57030,7 +54918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.870Z", @@ -57057,7 +54944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.870Z", @@ -57084,7 +54970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.870Z", @@ -57111,7 +54996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.870Z", @@ -57138,7 +55022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.870Z", @@ -57165,7 +55048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.870Z", @@ -57192,7 +55074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.870Z", @@ -57219,7 +55100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.870Z", @@ -57246,7 +55126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.870Z", @@ -57273,7 +55152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.871Z", @@ -57300,7 +55178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.871Z", @@ -57327,7 +55204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.871Z", @@ -57354,7 +55230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.871Z", @@ -57381,7 +55256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.871Z", @@ -57408,7 +55282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.871Z", @@ -57435,7 +55308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.871Z", @@ -57462,7 +55334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.871Z", @@ -57489,7 +55360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.871Z", @@ -57516,7 +55386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.871Z", @@ -57543,7 +55412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.871Z", @@ -57570,7 +55438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.871Z", @@ -57597,7 +55464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.872Z", @@ -57624,7 +55490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.872Z", @@ -57651,7 +55516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.872Z", @@ -57678,7 +55542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.872Z", @@ -57705,7 +55568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.872Z", @@ -57732,7 +55594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.872Z", @@ -57759,7 +55620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.872Z", @@ -57786,7 +55646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.872Z", @@ -57813,7 +55672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.872Z", @@ -57840,7 +55698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.872Z", @@ -57867,7 +55724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.872Z", @@ -57894,7 +55750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.872Z", @@ -57921,7 +55776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.873Z", @@ -57948,7 +55802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.873Z", @@ -57975,7 +55828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.873Z", @@ -58002,7 +55854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.873Z", @@ -58029,7 +55880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.873Z", @@ -58056,7 +55906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.873Z", @@ -58083,7 +55932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.873Z", @@ -58110,7 +55958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.873Z", @@ -58137,7 +55984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.873Z", @@ -58164,7 +56010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.873Z", @@ -58191,7 +56036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.873Z", @@ -58218,7 +56062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.873Z", @@ -58245,7 +56088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.874Z", @@ -58272,7 +56114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.874Z", @@ -58299,7 +56140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.874Z", @@ -58326,7 +56166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.874Z", @@ -58353,7 +56192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.874Z", @@ -58380,7 +56218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.874Z", @@ -58407,7 +56244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.874Z", @@ -58434,7 +56270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.874Z", @@ -58461,7 +56296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.874Z", @@ -58488,7 +56322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.875Z", @@ -58515,7 +56348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.875Z", @@ -58542,7 +56374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.875Z", @@ -58569,7 +56400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.875Z", @@ -58596,7 +56426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.875Z", @@ -58623,7 +56452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.875Z", @@ -58650,7 +56478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.875Z", @@ -58677,7 +56504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.875Z", @@ -58704,7 +56530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.875Z", @@ -58731,7 +56556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.875Z", @@ -58758,7 +56582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.875Z", @@ -58785,7 +56608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.875Z", @@ -58812,7 +56634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.875Z", @@ -58839,7 +56660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.875Z", @@ -58866,7 +56686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.876Z", @@ -58893,7 +56712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.876Z", @@ -58920,7 +56738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.876Z", @@ -58947,7 +56764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.876Z", @@ -58974,7 +56790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.876Z", @@ -59001,7 +56816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.876Z", @@ -59028,7 +56842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.876Z", @@ -59055,7 +56868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.876Z", @@ -59082,7 +56894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.876Z", @@ -59109,7 +56920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.876Z", @@ -59136,7 +56946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.876Z", @@ -59163,7 +56972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.876Z", @@ -59190,7 +56998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.876Z", @@ -59217,7 +57024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.876Z", @@ -59244,7 +57050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.877Z", @@ -59271,7 +57076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.877Z", @@ -59298,7 +57102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.877Z", @@ -59325,7 +57128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.877Z", @@ -59352,7 +57154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.877Z", @@ -59379,7 +57180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.877Z", @@ -59406,7 +57206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.877Z", @@ -59433,7 +57232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.877Z", @@ -59460,7 +57258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.877Z", @@ -59487,7 +57284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.877Z", @@ -59514,7 +57310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.877Z", @@ -59541,7 +57336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.877Z", @@ -59568,7 +57362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.877Z", @@ -59595,7 +57388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:34:40.877Z", @@ -59620,7 +57412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:12.882Z", @@ -59647,7 +57438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.058Z", @@ -59674,7 +57464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.059Z", @@ -59701,7 +57490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.059Z", @@ -59728,7 +57516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.059Z", @@ -59755,7 +57542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.059Z", @@ -59782,7 +57568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.060Z", @@ -59809,7 +57594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.060Z", @@ -59836,7 +57620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.060Z", @@ -59863,7 +57646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.060Z", @@ -59890,7 +57672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.060Z", @@ -59917,7 +57698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.060Z", @@ -59944,7 +57724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.060Z", @@ -59971,7 +57750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.061Z", @@ -59998,7 +57776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.061Z", @@ -60025,7 +57802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.061Z", @@ -60052,7 +57828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.061Z", @@ -60079,7 +57854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.061Z", @@ -60106,7 +57880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.061Z", @@ -60133,7 +57906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.062Z", @@ -60160,7 +57932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.062Z", @@ -60187,7 +57958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.062Z", @@ -60214,7 +57984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.062Z", @@ -60241,7 +58010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.062Z", @@ -60268,7 +58036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.062Z", @@ -60295,7 +58062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.062Z", @@ -60322,7 +58088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.063Z", @@ -60349,7 +58114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.063Z", @@ -60376,7 +58140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.063Z", @@ -60403,7 +58166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.063Z", @@ -60430,7 +58192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.063Z", @@ -60457,7 +58218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.063Z", @@ -60484,7 +58244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.063Z", @@ -60511,7 +58270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.064Z", @@ -60538,7 +58296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.064Z", @@ -60565,7 +58322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.064Z", @@ -60592,7 +58348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.064Z", @@ -60619,7 +58374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.064Z", @@ -60646,7 +58400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.064Z", @@ -60673,7 +58426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.065Z", @@ -60700,7 +58452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.065Z", @@ -60727,7 +58478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.065Z", @@ -60754,7 +58504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.065Z", @@ -60781,7 +58530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.065Z", @@ -60808,7 +58556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.065Z", @@ -60835,7 +58582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.065Z", @@ -60862,7 +58608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.066Z", @@ -60889,7 +58634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.066Z", @@ -60916,7 +58660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.066Z", @@ -60943,7 +58686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.066Z", @@ -60970,7 +58712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.066Z", @@ -60997,7 +58738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.067Z", @@ -61024,7 +58764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.067Z", @@ -61051,7 +58790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.067Z", @@ -61078,7 +58816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.067Z", @@ -61105,7 +58842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.067Z", @@ -61132,7 +58868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.067Z", @@ -61159,7 +58894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.067Z", @@ -61186,7 +58920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.067Z", @@ -61213,7 +58946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.067Z", @@ -61240,7 +58972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.067Z", @@ -61267,7 +58998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.067Z", @@ -61294,7 +59024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.067Z", @@ -61321,7 +59050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.068Z", @@ -61348,7 +59076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.068Z", @@ -61375,7 +59102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.068Z", @@ -61402,7 +59128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.068Z", @@ -61429,7 +59154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.068Z", @@ -61456,7 +59180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.068Z", @@ -61483,7 +59206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.068Z", @@ -61510,7 +59232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.068Z", @@ -61537,7 +59258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.068Z", @@ -61564,7 +59284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.068Z", @@ -61591,7 +59310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.068Z", @@ -61618,7 +59336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.069Z", @@ -61645,7 +59362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.069Z", @@ -61672,7 +59388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.069Z", @@ -61699,7 +59414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.069Z", @@ -61726,7 +59440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.069Z", @@ -61753,7 +59466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.069Z", @@ -61780,7 +59492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.069Z", @@ -61807,7 +59518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.069Z", @@ -61834,7 +59544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.069Z", @@ -61861,7 +59570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.069Z", @@ -61888,7 +59596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.069Z", @@ -61915,7 +59622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.069Z", @@ -61942,7 +59648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.069Z", @@ -61969,7 +59674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.069Z", @@ -61996,7 +59700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.070Z", @@ -62023,7 +59726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.070Z", @@ -62050,7 +59752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.070Z", @@ -62077,7 +59778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.070Z", @@ -62104,7 +59804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.070Z", @@ -62131,7 +59830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.070Z", @@ -62158,7 +59856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.070Z", @@ -62185,7 +59882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.070Z", @@ -62212,7 +59908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.070Z", @@ -62239,7 +59934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.070Z", @@ -62266,7 +59960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.070Z", @@ -62293,7 +59986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.070Z", @@ -62320,7 +60012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.070Z", @@ -62347,7 +60038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.070Z", @@ -62374,7 +60064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.071Z", @@ -62401,7 +60090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.071Z", @@ -62428,7 +60116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.071Z", @@ -62455,7 +60142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:36:13.071Z", @@ -62480,7 +60166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:49.940Z", @@ -62507,7 +60192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.057Z", @@ -62534,7 +60218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.058Z", @@ -62561,7 +60244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.058Z", @@ -62588,7 +60270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.058Z", @@ -62615,7 +60296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.058Z", @@ -62642,7 +60322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.058Z", @@ -62669,7 +60348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.058Z", @@ -62696,7 +60374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.059Z", @@ -62723,7 +60400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.059Z", @@ -62750,7 +60426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.059Z", @@ -62777,7 +60452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.059Z", @@ -62804,7 +60478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.059Z", @@ -62831,7 +60504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.059Z", @@ -62858,7 +60530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.059Z", @@ -62885,7 +60556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.059Z", @@ -62912,7 +60582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.059Z", @@ -62939,7 +60608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.059Z", @@ -62966,7 +60634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.059Z", @@ -62993,7 +60660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.059Z", @@ -63020,7 +60686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.059Z", @@ -63047,7 +60712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.060Z", @@ -63074,7 +60738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.060Z", @@ -63101,7 +60764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.060Z", @@ -63128,7 +60790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.060Z", @@ -63155,7 +60816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.060Z", @@ -63182,7 +60842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.060Z", @@ -63209,7 +60868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.060Z", @@ -63236,7 +60894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.060Z", @@ -63263,7 +60920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.060Z", @@ -63290,7 +60946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.060Z", @@ -63317,7 +60972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.060Z", @@ -63344,7 +60998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.060Z", @@ -63371,7 +61024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.061Z", @@ -63398,7 +61050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.061Z", @@ -63425,7 +61076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.061Z", @@ -63452,7 +61102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.061Z", @@ -63479,7 +61128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.061Z", @@ -63506,7 +61154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.061Z", @@ -63533,7 +61180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.061Z", @@ -63560,7 +61206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.061Z", @@ -63587,7 +61232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.061Z", @@ -63614,7 +61258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.061Z", @@ -63641,7 +61284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.061Z", @@ -63668,7 +61310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.061Z", @@ -63695,7 +61336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.061Z", @@ -63722,7 +61362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.061Z", @@ -63749,7 +61388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.061Z", @@ -63776,7 +61414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.061Z", @@ -63803,7 +61440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.061Z", @@ -63830,7 +61466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.061Z", @@ -63857,7 +61492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.062Z", @@ -63884,7 +61518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.062Z", @@ -63911,7 +61544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.062Z", @@ -63938,7 +61570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.062Z", @@ -63965,7 +61596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.062Z", @@ -63992,7 +61622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.062Z", @@ -64019,7 +61648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.062Z", @@ -64046,7 +61674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.062Z", @@ -64073,7 +61700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.062Z", @@ -64100,7 +61726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.062Z", @@ -64127,7 +61752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.062Z", @@ -64154,7 +61778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.062Z", @@ -64181,7 +61804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.062Z", @@ -64208,7 +61830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.062Z", @@ -64235,7 +61856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.062Z", @@ -64262,7 +61882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.062Z", @@ -64289,7 +61908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.062Z", @@ -64316,7 +61934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.062Z", @@ -64343,7 +61960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.062Z", @@ -64370,7 +61986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.063Z", @@ -64397,7 +62012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.063Z", @@ -64424,7 +62038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.063Z", @@ -64451,7 +62064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.063Z", @@ -64478,7 +62090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.063Z", @@ -64505,7 +62116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.063Z", @@ -64532,7 +62142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.063Z", @@ -64559,7 +62168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.063Z", @@ -64586,7 +62194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.063Z", @@ -64613,7 +62220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.063Z", @@ -64640,7 +62246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.063Z", @@ -64667,7 +62272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.063Z", @@ -64694,7 +62298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.063Z", @@ -64721,7 +62324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.063Z", @@ -64748,7 +62350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.063Z", @@ -64775,7 +62376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.063Z", @@ -64802,7 +62402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.063Z", @@ -64829,7 +62428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.063Z", @@ -64856,7 +62454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.063Z", @@ -64883,7 +62480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.063Z", @@ -64910,7 +62506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.064Z", @@ -64937,7 +62532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.064Z", @@ -64964,7 +62558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.064Z", @@ -64991,7 +62584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.064Z", @@ -65018,7 +62610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.064Z", @@ -65045,7 +62636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.064Z", @@ -65072,7 +62662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.064Z", @@ -65099,7 +62688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.064Z", @@ -65126,7 +62714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.064Z", @@ -65153,7 +62740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.064Z", @@ -65180,7 +62766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.064Z", @@ -65207,7 +62792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.064Z", @@ -65234,7 +62818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.064Z", @@ -65261,7 +62844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.064Z", @@ -65288,7 +62870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.064Z", @@ -65315,7 +62896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:37:50.064Z", @@ -65340,7 +62920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.257Z", @@ -65367,7 +62946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.361Z", @@ -65394,7 +62972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.361Z", @@ -65421,7 +62998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.361Z", @@ -65448,7 +63024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.361Z", @@ -65475,7 +63050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.362Z", @@ -65502,7 +63076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.362Z", @@ -65529,7 +63102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.362Z", @@ -65556,7 +63128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.362Z", @@ -65583,7 +63154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.362Z", @@ -65610,7 +63180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.362Z", @@ -65637,7 +63206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.362Z", @@ -65664,7 +63232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.363Z", @@ -65691,7 +63258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.363Z", @@ -65718,7 +63284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.363Z", @@ -65745,7 +63310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.363Z", @@ -65772,7 +63336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.363Z", @@ -65799,7 +63362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.363Z", @@ -65826,7 +63388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.363Z", @@ -65853,7 +63414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.363Z", @@ -65880,7 +63440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.363Z", @@ -65907,7 +63466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.363Z", @@ -65934,7 +63492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.363Z", @@ -65961,7 +63518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.364Z", @@ -65988,7 +63544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.364Z", @@ -66015,7 +63570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.364Z", @@ -66042,7 +63596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.364Z", @@ -66069,7 +63622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.364Z", @@ -66096,7 +63648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.364Z", @@ -66123,7 +63674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.364Z", @@ -66150,7 +63700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.364Z", @@ -66177,7 +63726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.364Z", @@ -66204,7 +63752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.364Z", @@ -66231,7 +63778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.364Z", @@ -66258,7 +63804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.364Z", @@ -66285,7 +63830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.364Z", @@ -66312,7 +63856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.365Z", @@ -66339,7 +63882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.365Z", @@ -66366,7 +63908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.365Z", @@ -66393,7 +63934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.365Z", @@ -66420,7 +63960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.365Z", @@ -66447,7 +63986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.365Z", @@ -66474,7 +64012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.365Z", @@ -66501,7 +64038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.366Z", @@ -66528,7 +64064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.366Z", @@ -66555,7 +64090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.366Z", @@ -66582,7 +64116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.366Z", @@ -66609,7 +64142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.366Z", @@ -66636,7 +64168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.366Z", @@ -66663,7 +64194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.366Z", @@ -66690,7 +64220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.367Z", @@ -66717,7 +64246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.367Z", @@ -66744,7 +64272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.367Z", @@ -66771,7 +64298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.367Z", @@ -66798,7 +64324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.367Z", @@ -66825,7 +64350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.368Z", @@ -66852,7 +64376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.368Z", @@ -66879,7 +64402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.368Z", @@ -66906,7 +64428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.368Z", @@ -66933,7 +64454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.368Z", @@ -66960,7 +64480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.368Z", @@ -66987,7 +64506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.368Z", @@ -67014,7 +64532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.368Z", @@ -67041,7 +64558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.368Z", @@ -67068,7 +64584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.368Z", @@ -67095,7 +64610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.368Z", @@ -67122,7 +64636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.368Z", @@ -67149,7 +64662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.369Z", @@ -67176,7 +64688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.369Z", @@ -67203,7 +64714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.369Z", @@ -67230,7 +64740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.369Z", @@ -67257,7 +64766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.369Z", @@ -67284,7 +64792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.369Z", @@ -67311,7 +64818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.369Z", @@ -67338,7 +64844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.369Z", @@ -67365,7 +64870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.369Z", @@ -67392,7 +64896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.369Z", @@ -67419,7 +64922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.369Z", @@ -67446,7 +64948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.369Z", @@ -67473,7 +64974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.369Z", @@ -67500,7 +65000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.369Z", @@ -67527,7 +65026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.369Z", @@ -67554,7 +65052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.370Z", @@ -67581,7 +65078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.370Z", @@ -67608,7 +65104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.370Z", @@ -67635,7 +65130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.370Z", @@ -67662,7 +65156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.370Z", @@ -67689,7 +65182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.370Z", @@ -67716,7 +65208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.370Z", @@ -67743,7 +65234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.370Z", @@ -67770,7 +65260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.370Z", @@ -67797,7 +65286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.370Z", @@ -67824,7 +65312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.370Z", @@ -67851,7 +65338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.370Z", @@ -67878,7 +65364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.370Z", @@ -67905,7 +65390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.370Z", @@ -67932,7 +65416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.370Z", @@ -67959,7 +65442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.370Z", @@ -67986,7 +65468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.370Z", @@ -68013,7 +65494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.370Z", @@ -68040,7 +65520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.371Z", @@ -68067,7 +65546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.371Z", @@ -68094,7 +65572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.371Z", @@ -68121,7 +65598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.371Z", @@ -68148,7 +65624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:39:51.371Z", @@ -68173,7 +65648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.322Z", @@ -68200,7 +65674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.431Z", @@ -68227,7 +65700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.431Z", @@ -68254,7 +65726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.431Z", @@ -68281,7 +65752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.431Z", @@ -68308,7 +65778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.432Z", @@ -68335,7 +65804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.432Z", @@ -68362,7 +65830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.432Z", @@ -68389,7 +65856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.432Z", @@ -68416,7 +65882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.432Z", @@ -68443,7 +65908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.432Z", @@ -68470,7 +65934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.432Z", @@ -68497,7 +65960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.432Z", @@ -68524,7 +65986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.432Z", @@ -68551,7 +66012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.432Z", @@ -68578,7 +66038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.432Z", @@ -68605,7 +66064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.432Z", @@ -68632,7 +66090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.432Z", @@ -68659,7 +66116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.432Z", @@ -68686,7 +66142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.432Z", @@ -68713,7 +66168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.432Z", @@ -68740,7 +66194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.432Z", @@ -68767,7 +66220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.432Z", @@ -68794,7 +66246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.432Z", @@ -68821,7 +66272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.432Z", @@ -68848,7 +66298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.433Z", @@ -68875,7 +66324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.433Z", @@ -68902,7 +66350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.433Z", @@ -68929,7 +66376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.433Z", @@ -68956,7 +66402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.433Z", @@ -68983,7 +66428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.433Z", @@ -69010,7 +66454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.433Z", @@ -69037,7 +66480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.433Z", @@ -69064,7 +66506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.433Z", @@ -69091,7 +66532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.433Z", @@ -69118,7 +66558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.433Z", @@ -69145,7 +66584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.433Z", @@ -69172,7 +66610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.433Z", @@ -69199,7 +66636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.433Z", @@ -69226,7 +66662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.433Z", @@ -69253,7 +66688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.433Z", @@ -69280,7 +66714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.433Z", @@ -69307,7 +66740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.433Z", @@ -69334,7 +66766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.434Z", @@ -69361,7 +66792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.434Z", @@ -69388,7 +66818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.434Z", @@ -69415,7 +66844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.434Z", @@ -69442,7 +66870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.434Z", @@ -69469,7 +66896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.434Z", @@ -69496,7 +66922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.434Z", @@ -69523,7 +66948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.434Z", @@ -69550,7 +66974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.434Z", @@ -69577,7 +67000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.434Z", @@ -69604,7 +67026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.434Z", @@ -69631,7 +67052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.434Z", @@ -69658,7 +67078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.434Z", @@ -69685,7 +67104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.434Z", @@ -69712,7 +67130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.434Z", @@ -69739,7 +67156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.434Z", @@ -69766,7 +67182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.434Z", @@ -69793,7 +67208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.434Z", @@ -69820,7 +67234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.434Z", @@ -69847,7 +67260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.434Z", @@ -69874,7 +67286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.434Z", @@ -69901,7 +67312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.434Z", @@ -69928,7 +67338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.435Z", @@ -69955,7 +67364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.435Z", @@ -69982,7 +67390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.435Z", @@ -70009,7 +67416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.435Z", @@ -70036,7 +67442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.435Z", @@ -70063,7 +67468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.435Z", @@ -70090,7 +67494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.435Z", @@ -70117,7 +67520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.435Z", @@ -70144,7 +67546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.435Z", @@ -70171,7 +67572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.435Z", @@ -70198,7 +67598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.435Z", @@ -70225,7 +67624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.435Z", @@ -70252,7 +67650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.435Z", @@ -70279,7 +67676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.435Z", @@ -70306,7 +67702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.435Z", @@ -70333,7 +67728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.435Z", @@ -70360,7 +67754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.435Z", @@ -70387,7 +67780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.435Z", @@ -70414,7 +67806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.435Z", @@ -70441,7 +67832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.435Z", @@ -70468,7 +67858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.435Z", @@ -70495,7 +67884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.435Z", @@ -70522,7 +67910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.435Z", @@ -70549,7 +67936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.436Z", @@ -70576,7 +67962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.436Z", @@ -70603,7 +67988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.436Z", @@ -70630,7 +68014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.436Z", @@ -70657,7 +68040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.436Z", @@ -70684,7 +68066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.436Z", @@ -70711,7 +68092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.436Z", @@ -70738,7 +68118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.436Z", @@ -70765,7 +68144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.436Z", @@ -70792,7 +68170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.436Z", @@ -70819,7 +68196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.436Z", @@ -70846,7 +68222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.436Z", @@ -70873,7 +68248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.436Z", @@ -70900,7 +68274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.436Z", @@ -70927,7 +68300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.436Z", @@ -70954,7 +68326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.436Z", @@ -70981,7 +68352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-05T11:42:03.436Z", @@ -71006,7 +68376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.539Z", @@ -71033,7 +68402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.664Z", @@ -71060,7 +68428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.664Z", @@ -71087,7 +68454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.664Z", @@ -71114,7 +68480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.664Z", @@ -71141,7 +68506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.664Z", @@ -71168,7 +68532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.664Z", @@ -71195,7 +68558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.664Z", @@ -71222,7 +68584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.664Z", @@ -71249,7 +68610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.665Z", @@ -71276,7 +68636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.665Z", @@ -71303,7 +68662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.665Z", @@ -71330,7 +68688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.665Z", @@ -71357,7 +68714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.665Z", @@ -71384,7 +68740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.665Z", @@ -71411,7 +68766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.665Z", @@ -71438,7 +68792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.665Z", @@ -71465,7 +68818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.665Z", @@ -71492,7 +68844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.665Z", @@ -71519,7 +68870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.665Z", @@ -71546,7 +68896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.665Z", @@ -71573,7 +68922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.665Z", @@ -71600,7 +68948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.665Z", @@ -71627,7 +68974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.665Z", @@ -71654,7 +69000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.665Z", @@ -71681,7 +69026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.665Z", @@ -71708,7 +69052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.665Z", @@ -71735,7 +69078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.666Z", @@ -71762,7 +69104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.666Z", @@ -71789,7 +69130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.666Z", @@ -71816,7 +69156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.666Z", @@ -71843,7 +69182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.666Z", @@ -71870,7 +69208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.666Z", @@ -71897,7 +69234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.666Z", @@ -71924,7 +69260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.666Z", @@ -71951,7 +69286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.666Z", @@ -71978,7 +69312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.666Z", @@ -72005,7 +69338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.666Z", @@ -72032,7 +69364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.666Z", @@ -72059,7 +69390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.666Z", @@ -72086,7 +69416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.666Z", @@ -72113,7 +69442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.666Z", @@ -72140,7 +69468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.666Z", @@ -72167,7 +69494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.666Z", @@ -72194,7 +69520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.666Z", @@ -72221,7 +69546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.666Z", @@ -72248,7 +69572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.666Z", @@ -72275,7 +69598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.667Z", @@ -72302,7 +69624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.667Z", @@ -72329,7 +69650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.667Z", @@ -72356,7 +69676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.667Z", @@ -72383,7 +69702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.667Z", @@ -72410,7 +69728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.667Z", @@ -72437,7 +69754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.667Z", @@ -72464,7 +69780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.667Z", @@ -72491,7 +69806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.667Z", @@ -72518,7 +69832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.667Z", @@ -72545,7 +69858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.667Z", @@ -72572,7 +69884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.667Z", @@ -72599,7 +69910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.667Z", @@ -72626,7 +69936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.667Z", @@ -72653,7 +69962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.667Z", @@ -72680,7 +69988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.667Z", @@ -72707,7 +70014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.667Z", @@ -72734,7 +70040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.668Z", @@ -72761,7 +70066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.668Z", @@ -72788,7 +70092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.668Z", @@ -72815,7 +70118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.668Z", @@ -72842,7 +70144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.668Z", @@ -72869,7 +70170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.668Z", @@ -72896,7 +70196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.668Z", @@ -72923,7 +70222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.668Z", @@ -72950,7 +70248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.668Z", @@ -72977,7 +70274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.668Z", @@ -73004,7 +70300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.668Z", @@ -73031,7 +70326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.668Z", @@ -73058,7 +70352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.668Z", @@ -73085,7 +70378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.668Z", @@ -73112,7 +70404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.669Z", @@ -73139,7 +70430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.669Z", @@ -73166,7 +70456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.669Z", @@ -73193,7 +70482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.669Z", @@ -73220,7 +70508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.669Z", @@ -73247,7 +70534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.669Z", @@ -73274,7 +70560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.669Z", @@ -73301,7 +70586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.669Z", @@ -73328,7 +70612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.669Z", @@ -73355,7 +70638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.669Z", @@ -73382,7 +70664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.670Z", @@ -73409,7 +70690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.670Z", @@ -73436,7 +70716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.670Z", @@ -73463,7 +70742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.670Z", @@ -73490,7 +70768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.670Z", @@ -73517,7 +70794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.670Z", @@ -73544,7 +70820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.670Z", @@ -73571,7 +70846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.670Z", @@ -73598,7 +70872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.670Z", @@ -73625,7 +70898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.670Z", @@ -73652,7 +70924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.670Z", @@ -73679,7 +70950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.670Z", @@ -73706,7 +70976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.670Z", @@ -73733,7 +71002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.670Z", @@ -73760,7 +71028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.670Z", @@ -73787,7 +71054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.670Z", @@ -73814,7 +71080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.670Z", @@ -73841,7 +71106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.670Z", @@ -73868,7 +71132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.670Z", @@ -73895,7 +71158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.670Z", @@ -73922,7 +71184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.670Z", @@ -73949,7 +71210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.670Z", @@ -73976,7 +71236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.671Z", @@ -74003,7 +71262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.671Z", @@ -74030,7 +71288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.671Z", @@ -74057,7 +71314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.671Z", @@ -74084,7 +71340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.671Z", @@ -74111,7 +71366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.671Z", @@ -74138,7 +71392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.671Z", @@ -74165,7 +71418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.671Z", @@ -74192,7 +71444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.671Z", @@ -74219,7 +71470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.671Z", @@ -74246,7 +71496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.671Z", @@ -74273,7 +71522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.671Z", @@ -74300,7 +71548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.671Z", @@ -74327,7 +71574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.671Z", @@ -74354,7 +71600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.671Z", @@ -74381,7 +71626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.671Z", @@ -74408,7 +71652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.671Z", @@ -74435,7 +71678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.671Z", @@ -74462,7 +71704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.671Z", @@ -74489,7 +71730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.671Z", @@ -74516,7 +71756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.671Z", @@ -74543,7 +71782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -74570,7 +71808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -74597,7 +71834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -74624,7 +71860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -74651,7 +71886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -74678,7 +71912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -74705,7 +71938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -74732,7 +71964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -74759,7 +71990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -74786,7 +72016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -74813,7 +72042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -74840,7 +72068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -74867,7 +72094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -74894,7 +72120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -74921,7 +72146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -74948,7 +72172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -74975,7 +72198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -75002,7 +72224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -75029,7 +72250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -75056,7 +72276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -75083,7 +72302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -75110,7 +72328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -75137,7 +72354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -75164,7 +72380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -75191,7 +72406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -75218,7 +72432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -75245,7 +72458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.672Z", @@ -75272,7 +72484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.673Z", @@ -75299,7 +72510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.673Z", @@ -75326,7 +72536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.673Z", @@ -75353,7 +72562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.673Z", @@ -75380,7 +72588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.673Z", @@ -75407,7 +72614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.673Z", @@ -75434,7 +72640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.673Z", @@ -75461,7 +72666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.673Z", @@ -75488,7 +72692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.673Z", @@ -75515,7 +72718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.674Z", @@ -75542,7 +72744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.674Z", @@ -75569,7 +72770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.674Z", @@ -75596,7 +72796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.674Z", @@ -75623,7 +72822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.675Z", @@ -75650,7 +72848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.675Z", @@ -75677,7 +72874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.675Z", @@ -75704,7 +72900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.675Z", @@ -75731,7 +72926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.675Z", @@ -75758,7 +72952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.675Z", @@ -75785,7 +72978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.675Z", @@ -75812,7 +73004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.675Z", @@ -75839,7 +73030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.675Z", @@ -75866,7 +73056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.675Z", @@ -75893,7 +73082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.676Z", @@ -75920,7 +73108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.676Z", @@ -75947,7 +73134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.676Z", @@ -75974,7 +73160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.676Z", @@ -76001,7 +73186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.676Z", @@ -76028,7 +73212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.676Z", @@ -76055,7 +73238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.676Z", @@ -76082,7 +73264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.676Z", @@ -76109,7 +73290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.676Z", @@ -76136,7 +73316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.676Z", @@ -76163,7 +73342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.676Z", @@ -76190,7 +73368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.676Z", @@ -76217,7 +73394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.676Z", @@ -76244,7 +73420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.676Z", @@ -76271,7 +73446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.676Z", @@ -76298,7 +73472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.676Z", @@ -76325,7 +73498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.676Z", @@ -76352,7 +73524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.677Z", @@ -76379,7 +73550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.677Z", @@ -76406,7 +73576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.677Z", @@ -76433,7 +73602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.677Z", @@ -76460,7 +73628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.677Z", @@ -76487,7 +73654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.677Z", @@ -76514,7 +73680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.677Z", @@ -76541,7 +73706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.677Z", @@ -76568,7 +73732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.677Z", @@ -76595,7 +73758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.677Z", @@ -76622,7 +73784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.677Z", @@ -76649,7 +73810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.677Z", @@ -76676,7 +73836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:04:39.677Z", @@ -76701,7 +73860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.335Z", @@ -76728,7 +73886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.484Z", @@ -76755,7 +73912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.484Z", @@ -76782,7 +73938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.484Z", @@ -76809,7 +73964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.484Z", @@ -76836,7 +73990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.484Z", @@ -76863,7 +74016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.484Z", @@ -76890,7 +74042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.484Z", @@ -76917,7 +74068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.484Z", @@ -76944,7 +74094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.484Z", @@ -76971,7 +74120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -76998,7 +74146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77025,7 +74172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77052,7 +74198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77079,7 +74224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77106,7 +74250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77133,7 +74276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77160,7 +74302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77187,7 +74328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77214,7 +74354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77241,7 +74380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77268,7 +74406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77295,7 +74432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77322,7 +74458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77349,7 +74484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77376,7 +74510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77403,7 +74536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77430,7 +74562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77457,7 +74588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77484,7 +74614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77511,7 +74640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77538,7 +74666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77565,7 +74692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77592,7 +74718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77619,7 +74744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77646,7 +74770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77673,7 +74796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77700,7 +74822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77727,7 +74848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77754,7 +74874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77781,7 +74900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77808,7 +74926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77835,7 +74952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.485Z", @@ -77862,7 +74978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -77889,7 +75004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -77916,7 +75030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -77943,7 +75056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -77970,7 +75082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -77997,7 +75108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78024,7 +75134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78051,7 +75160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78078,7 +75186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78105,7 +75212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78132,7 +75238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78159,7 +75264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78186,7 +75290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78213,7 +75316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78240,7 +75342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78267,7 +75368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78294,7 +75394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78321,7 +75420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78348,7 +75446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78375,7 +75472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78402,7 +75498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78429,7 +75524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78456,7 +75550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78483,7 +75576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78510,7 +75602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78537,7 +75628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78564,7 +75654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78591,7 +75680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78618,7 +75706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78645,7 +75732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78672,7 +75758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78699,7 +75784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78726,7 +75810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78753,7 +75836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78780,7 +75862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78807,7 +75888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.486Z", @@ -78834,7 +75914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.487Z", @@ -78861,7 +75940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.487Z", @@ -78888,7 +75966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.487Z", @@ -78915,7 +75992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.487Z", @@ -78942,7 +76018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.487Z", @@ -78969,7 +76044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.487Z", @@ -78996,7 +76070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.487Z", @@ -79023,7 +76096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.487Z", @@ -79050,7 +76122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.487Z", @@ -79077,7 +76148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.487Z", @@ -79104,7 +76174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.487Z", @@ -79131,7 +76200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.487Z", @@ -79158,7 +76226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.487Z", @@ -79185,7 +76252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.487Z", @@ -79212,7 +76278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.487Z", @@ -79239,7 +76304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.490Z", @@ -79266,7 +76330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.490Z", @@ -79293,7 +76356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.490Z", @@ -79320,7 +76382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.490Z", @@ -79347,7 +76408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.490Z", @@ -79374,7 +76434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.490Z", @@ -79401,7 +76460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.490Z", @@ -79428,7 +76486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.490Z", @@ -79455,7 +76512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.490Z", @@ -79482,7 +76538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.490Z", @@ -79509,7 +76564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.490Z", @@ -79536,7 +76590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.490Z", @@ -79563,7 +76616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.490Z", @@ -79590,7 +76642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.490Z", @@ -79617,7 +76668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.490Z", @@ -79644,7 +76694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.490Z", @@ -79671,7 +76720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.490Z", @@ -79698,7 +76746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.490Z", @@ -79725,7 +76772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.490Z", @@ -79752,7 +76798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.490Z", @@ -79779,7 +76824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.490Z", @@ -79806,7 +76850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -79833,7 +76876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -79860,7 +76902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -79887,7 +76928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -79914,7 +76954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -79941,7 +76980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -79968,7 +77006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -79995,7 +77032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80022,7 +77058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80049,7 +77084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80076,7 +77110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80103,7 +77136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80130,7 +77162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80157,7 +77188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80184,7 +77214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80211,7 +77240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80238,7 +77266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80265,7 +77292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80292,7 +77318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80319,7 +77344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80346,7 +77370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80373,7 +77396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80400,7 +77422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80427,7 +77448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80454,7 +77474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80481,7 +77500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80508,7 +77526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80535,7 +77552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80562,7 +77578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80589,7 +77604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80616,7 +77630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80643,7 +77656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80670,7 +77682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80697,7 +77708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80724,7 +77734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80751,7 +77760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80778,7 +77786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.491Z", @@ -80805,7 +77812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -80832,7 +77838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -80859,7 +77864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -80886,7 +77890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -80913,7 +77916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -80940,7 +77942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -80967,7 +77968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -80994,7 +77994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81021,7 +78020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81048,7 +78046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81075,7 +78072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81102,7 +78098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81129,7 +78124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81156,7 +78150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81183,7 +78176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81210,7 +78202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81237,7 +78228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81264,7 +78254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81291,7 +78280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81318,7 +78306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81345,7 +78332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81372,7 +78358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81399,7 +78384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81426,7 +78410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81453,7 +78436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81480,7 +78462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81507,7 +78488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81534,7 +78514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81561,7 +78540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81588,7 +78566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81615,7 +78592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81642,7 +78618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81669,7 +78644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81696,7 +78670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81723,7 +78696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81750,7 +78722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81777,7 +78748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81804,7 +78774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81831,7 +78800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81858,7 +78826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81885,7 +78852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.492Z", @@ -81912,7 +78878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.493Z", @@ -81939,7 +78904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.493Z", @@ -81966,7 +78930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.493Z", @@ -81993,7 +78956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.493Z", @@ -82020,7 +78982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.493Z", @@ -82047,7 +79008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.493Z", @@ -82074,7 +79034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.493Z", @@ -82101,7 +79060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.493Z", @@ -82128,7 +79086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.493Z", @@ -82155,7 +79112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.493Z", @@ -82182,7 +79138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.493Z", @@ -82209,7 +79164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.493Z", @@ -82236,7 +79190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.493Z", @@ -82263,7 +79216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.493Z", @@ -82290,7 +79242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.493Z", @@ -82317,7 +79268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.493Z", @@ -82344,7 +79294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.493Z", @@ -82371,7 +79320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:09.493Z", @@ -82396,7 +79344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.322Z", @@ -82423,7 +79370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.389Z", @@ -82450,7 +79396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.389Z", @@ -82477,7 +79422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.389Z", @@ -82504,7 +79448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.389Z", @@ -82531,7 +79474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.389Z", @@ -82558,7 +79500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.389Z", @@ -82585,7 +79526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.389Z", @@ -82612,7 +79552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.389Z", @@ -82639,7 +79578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.389Z", @@ -82666,7 +79604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.389Z", @@ -82693,7 +79630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.389Z", @@ -82720,7 +79656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.389Z", @@ -82747,7 +79682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.390Z", @@ -82774,7 +79708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.390Z", @@ -82801,7 +79734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.390Z", @@ -82828,7 +79760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.390Z", @@ -82855,7 +79786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.390Z", @@ -82882,7 +79812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.390Z", @@ -82909,7 +79838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.390Z", @@ -82936,7 +79864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.390Z", @@ -82963,7 +79890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.390Z", @@ -82990,7 +79916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.390Z", @@ -83017,7 +79942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.390Z", @@ -83044,7 +79968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.390Z", @@ -83071,7 +79994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.390Z", @@ -83098,7 +80020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.390Z", @@ -83125,7 +80046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.390Z", @@ -83152,7 +80072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.390Z", @@ -83179,7 +80098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.390Z", @@ -83206,7 +80124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.390Z", @@ -83233,7 +80150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.390Z", @@ -83260,7 +80176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.390Z", @@ -83287,7 +80202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.390Z", @@ -83314,7 +80228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.391Z", @@ -83341,7 +80254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.391Z", @@ -83368,7 +80280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.391Z", @@ -83395,7 +80306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.391Z", @@ -83422,7 +80332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.391Z", @@ -83449,7 +80358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.391Z", @@ -83476,7 +80384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.391Z", @@ -83503,7 +80410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.391Z", @@ -83530,7 +80436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.391Z", @@ -83557,7 +80462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.391Z", @@ -83584,7 +80488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.391Z", @@ -83611,7 +80514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.391Z", @@ -83638,7 +80540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.391Z", @@ -83665,7 +80566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.391Z", @@ -83692,7 +80592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.391Z", @@ -83719,7 +80618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.391Z", @@ -83746,7 +80644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.391Z", @@ -83773,7 +80670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.391Z", @@ -83800,7 +80696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.391Z", @@ -83827,7 +80722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.391Z", @@ -83854,7 +80748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -83881,7 +80774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -83908,7 +80800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -83935,7 +80826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -83962,7 +80852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -83989,7 +80878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -84016,7 +80904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -84043,7 +80930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -84070,7 +80956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -84097,7 +80982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -84124,7 +81008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -84151,7 +81034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -84178,7 +81060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -84205,7 +81086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -84232,7 +81112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -84259,7 +81138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -84286,7 +81164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -84313,7 +81190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -84340,7 +81216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -84367,7 +81242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -84394,7 +81268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -84421,7 +81294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -84448,7 +81320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -84475,7 +81346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -84502,7 +81372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -84529,7 +81398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.392Z", @@ -84556,7 +81424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.393Z", @@ -84583,7 +81450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.393Z", @@ -84610,7 +81476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.393Z", @@ -84637,7 +81502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.393Z", @@ -84664,7 +81528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.393Z", @@ -84691,7 +81554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.393Z", @@ -84718,7 +81580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.393Z", @@ -84745,7 +81606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.393Z", @@ -84772,7 +81632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.393Z", @@ -84799,7 +81658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.393Z", @@ -84826,7 +81684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.393Z", @@ -84853,7 +81710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.393Z", @@ -84880,7 +81736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.393Z", @@ -84907,7 +81762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.393Z", @@ -84934,7 +81788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.393Z", @@ -84961,7 +81814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.393Z", @@ -84988,7 +81840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.394Z", @@ -85015,7 +81866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.394Z", @@ -85042,7 +81892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.394Z", @@ -85069,7 +81918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.394Z", @@ -85096,7 +81944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.394Z", @@ -85123,7 +81970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.394Z", @@ -85150,7 +81996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.394Z", @@ -85177,7 +82022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.394Z", @@ -85204,7 +82048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.394Z", @@ -85231,7 +82074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.394Z", @@ -85258,7 +82100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.394Z", @@ -85285,7 +82126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.394Z", @@ -85312,7 +82152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.394Z", @@ -85339,7 +82178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.394Z", @@ -85366,7 +82204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.394Z", @@ -85393,7 +82230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.394Z", @@ -85420,7 +82256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.394Z", @@ -85447,7 +82282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.394Z", @@ -85474,7 +82308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.394Z", @@ -85501,7 +82334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.394Z", @@ -85528,7 +82360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.394Z", @@ -85555,7 +82386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.395Z", @@ -85582,7 +82412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.395Z", @@ -85609,7 +82438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.395Z", @@ -85636,7 +82464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.395Z", @@ -85663,7 +82490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.395Z", @@ -85690,7 +82516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.395Z", @@ -85717,7 +82542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.395Z", @@ -85744,7 +82568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.395Z", @@ -85771,7 +82594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.395Z", @@ -85798,7 +82620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.395Z", @@ -85825,7 +82646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.395Z", @@ -85852,7 +82672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.395Z", @@ -85879,7 +82698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.395Z", @@ -85906,7 +82724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.395Z", @@ -85933,7 +82750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.395Z", @@ -85960,7 +82776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.395Z", @@ -85987,7 +82802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.395Z", @@ -86014,7 +82828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.395Z", @@ -86041,7 +82854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.395Z", @@ -86068,7 +82880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.395Z", @@ -86095,7 +82906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.395Z", @@ -86122,7 +82932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.396Z", @@ -86149,7 +82958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.400Z", @@ -86176,7 +82984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86203,7 +83010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86230,7 +83036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86257,7 +83062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86284,7 +83088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86311,7 +83114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86338,7 +83140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86365,7 +83166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86392,7 +83192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86419,7 +83218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86446,7 +83244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86473,7 +83270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86500,7 +83296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86527,7 +83322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86554,7 +83348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86581,7 +83374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86608,7 +83400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86635,7 +83426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86662,7 +83452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86689,7 +83478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86716,7 +83504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86743,7 +83530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86770,7 +83556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86797,7 +83582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86824,7 +83608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86851,7 +83634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.401Z", @@ -86878,7 +83660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -86905,7 +83686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -86932,7 +83712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -86959,7 +83738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -86986,7 +83764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87013,7 +83790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87040,7 +83816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87067,7 +83842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87094,7 +83868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87121,7 +83894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87148,7 +83920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87175,7 +83946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87202,7 +83972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87229,7 +83998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87256,7 +84024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87283,7 +84050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87310,7 +84076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87337,7 +84102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87364,7 +84128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87391,7 +84154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87418,7 +84180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87445,7 +84206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87472,7 +84232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87499,7 +84258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87526,7 +84284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87553,7 +84310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87580,7 +84336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87607,7 +84362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87634,7 +84388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.402Z", @@ -87661,7 +84414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.403Z", @@ -87688,7 +84440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.403Z", @@ -87715,7 +84466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.403Z", @@ -87742,7 +84492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.403Z", @@ -87769,7 +84518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.403Z", @@ -87796,7 +84544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.403Z", @@ -87823,7 +84570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.403Z", @@ -87850,7 +84596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.403Z", @@ -87877,7 +84622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.403Z", @@ -87904,7 +84648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.403Z", @@ -87931,7 +84674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.403Z", @@ -87958,7 +84700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.403Z", @@ -87985,7 +84726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.403Z", @@ -88012,7 +84752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.403Z", @@ -88039,7 +84778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.403Z", @@ -88066,7 +84804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:17.403Z", @@ -88091,7 +84828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.451Z", @@ -88118,7 +84854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.519Z", @@ -88145,7 +84880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.519Z", @@ -88172,7 +84906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.519Z", @@ -88199,7 +84932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.519Z", @@ -88226,7 +84958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.519Z", @@ -88253,7 +84984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.519Z", @@ -88280,7 +85010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.519Z", @@ -88307,7 +85036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.519Z", @@ -88334,7 +85062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.519Z", @@ -88361,7 +85088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.519Z", @@ -88388,7 +85114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.519Z", @@ -88415,7 +85140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.519Z", @@ -88442,7 +85166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.519Z", @@ -88469,7 +85192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.519Z", @@ -88496,7 +85218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.519Z", @@ -88523,7 +85244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.519Z", @@ -88550,7 +85270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.519Z", @@ -88577,7 +85296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.519Z", @@ -88604,7 +85322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -88631,7 +85348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -88658,7 +85374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -88685,7 +85400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -88712,7 +85426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -88739,7 +85452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -88766,7 +85478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -88793,7 +85504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -88820,7 +85530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -88847,7 +85556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -88874,7 +85582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -88901,7 +85608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -88928,7 +85634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -88955,7 +85660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -88982,7 +85686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -89009,7 +85712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -89036,7 +85738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -89063,7 +85764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -89090,7 +85790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -89117,7 +85816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -89144,7 +85842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -89171,7 +85868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -89198,7 +85894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -89225,7 +85920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -89252,7 +85946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -89279,7 +85972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -89306,7 +85998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -89333,7 +86024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -89360,7 +86050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -89387,7 +86076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -89414,7 +86102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -89441,7 +86128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -89468,7 +86154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -89495,7 +86180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -89522,7 +86206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -89549,7 +86232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -89576,7 +86258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.520Z", @@ -89603,7 +86284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -89630,7 +86310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -89657,7 +86336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -89684,7 +86362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -89711,7 +86388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -89738,7 +86414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -89765,7 +86440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -89792,7 +86466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -89819,7 +86492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -89846,7 +86518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -89873,7 +86544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -89900,7 +86570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -89927,7 +86596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -89954,7 +86622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -89981,7 +86648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -90008,7 +86674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -90035,7 +86700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -90062,7 +86726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -90089,7 +86752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -90116,7 +86778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -90143,7 +86804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -90170,7 +86830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -90197,7 +86856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -90224,7 +86882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.521Z", @@ -90251,7 +86908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.522Z", @@ -90278,7 +86934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.522Z", @@ -90305,7 +86960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.522Z", @@ -90332,7 +86986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.522Z", @@ -90359,7 +87012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.522Z", @@ -90386,7 +87038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.522Z", @@ -90413,7 +87064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.522Z", @@ -90440,7 +87090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.522Z", @@ -90467,7 +87116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.522Z", @@ -90494,7 +87142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.522Z", @@ -90521,7 +87168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.522Z", @@ -90548,7 +87194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.522Z", @@ -90575,7 +87220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.522Z", @@ -90602,7 +87246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.522Z", @@ -90629,7 +87272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.522Z", @@ -90656,7 +87298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.522Z", @@ -90683,7 +87324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.522Z", @@ -90710,7 +87350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.522Z", @@ -90737,7 +87376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.522Z", @@ -90764,7 +87402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.522Z", @@ -90791,7 +87428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.522Z", @@ -90818,7 +87454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.522Z", @@ -90845,7 +87480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.523Z", @@ -90872,7 +87506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.523Z", @@ -90899,7 +87532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.523Z", @@ -90926,7 +87558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.523Z", @@ -90953,7 +87584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.523Z", @@ -90980,7 +87610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.523Z", @@ -91007,7 +87636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.523Z", @@ -91034,7 +87662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.523Z", @@ -91061,7 +87688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.523Z", @@ -91088,7 +87714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.523Z", @@ -91115,7 +87740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.523Z", @@ -91142,7 +87766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.523Z", @@ -91169,7 +87792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.523Z", @@ -91196,7 +87818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.523Z", @@ -91223,7 +87844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.523Z", @@ -91250,7 +87870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.523Z", @@ -91277,7 +87896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.523Z", @@ -91304,7 +87922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.523Z", @@ -91331,7 +87948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.523Z", @@ -91358,7 +87974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.523Z", @@ -91385,7 +88000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.523Z", @@ -91412,7 +88026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.523Z", @@ -91439,7 +88052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.524Z", @@ -91466,7 +88078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.524Z", @@ -91493,7 +88104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.524Z", @@ -91520,7 +88130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.524Z", @@ -91547,7 +88156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.524Z", @@ -91574,7 +88182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.524Z", @@ -91601,7 +88208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.524Z", @@ -91628,7 +88234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.524Z", @@ -91655,7 +88260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.524Z", @@ -91682,7 +88286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.524Z", @@ -91709,7 +88312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.524Z", @@ -91736,7 +88338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.524Z", @@ -91763,7 +88364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.524Z", @@ -91790,7 +88390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.524Z", @@ -91817,7 +88416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.524Z", @@ -91844,7 +88442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.524Z", @@ -91871,7 +88468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.524Z", @@ -91898,7 +88494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.524Z", @@ -91925,7 +88520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.524Z", @@ -91952,7 +88546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.525Z", @@ -91979,7 +88572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.525Z", @@ -92006,7 +88598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.525Z", @@ -92033,7 +88624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.525Z", @@ -92060,7 +88650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.525Z", @@ -92087,7 +88676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.525Z", @@ -92114,7 +88702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.525Z", @@ -92141,7 +88728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.525Z", @@ -92168,7 +88754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.525Z", @@ -92195,7 +88780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.525Z", @@ -92222,7 +88806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.525Z", @@ -92249,7 +88832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.525Z", @@ -92276,7 +88858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.525Z", @@ -92303,7 +88884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.525Z", @@ -92330,7 +88910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.525Z", @@ -92357,7 +88936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.525Z", @@ -92384,7 +88962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.525Z", @@ -92411,7 +88988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.525Z", @@ -92438,7 +89014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.526Z", @@ -92465,7 +89040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.526Z", @@ -92492,7 +89066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.526Z", @@ -92519,7 +89092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.526Z", @@ -92546,7 +89118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.526Z", @@ -92573,7 +89144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.526Z", @@ -92600,7 +89170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.526Z", @@ -92627,7 +89196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.526Z", @@ -92654,7 +89222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.526Z", @@ -92681,7 +89248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.526Z", @@ -92708,7 +89274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.526Z", @@ -92735,7 +89300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.526Z", @@ -92762,7 +89326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.526Z", @@ -92789,7 +89352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.526Z", @@ -92816,7 +89378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.526Z", @@ -92843,7 +89404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.526Z", @@ -92870,7 +89430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.526Z", @@ -92897,7 +89456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.526Z", @@ -92924,7 +89482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.526Z", @@ -92951,7 +89508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.526Z", @@ -92978,7 +89534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.526Z", @@ -93005,7 +89560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.526Z", @@ -93032,7 +89586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.527Z", @@ -93059,7 +89612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.527Z", @@ -93086,7 +89638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.527Z", @@ -93113,7 +89664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.527Z", @@ -93140,7 +89690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.527Z", @@ -93167,7 +89716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.527Z", @@ -93194,7 +89742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.527Z", @@ -93221,7 +89768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.527Z", @@ -93248,7 +89794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.527Z", @@ -93275,7 +89820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.527Z", @@ -93302,7 +89846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.527Z", @@ -93329,7 +89872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.527Z", @@ -93356,7 +89898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.527Z", @@ -93383,7 +89924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.527Z", @@ -93410,7 +89950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.527Z", @@ -93437,7 +89976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.527Z", @@ -93464,7 +90002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.527Z", @@ -93491,7 +90028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.527Z", @@ -93518,7 +90054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.527Z", @@ -93545,7 +90080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.527Z", @@ -93572,7 +90106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.527Z", @@ -93599,7 +90132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.527Z", @@ -93626,7 +90158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.528Z", @@ -93653,7 +90184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.528Z", @@ -93680,7 +90210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.528Z", @@ -93707,7 +90236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.528Z", @@ -93734,7 +90262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.528Z", @@ -93761,7 +90288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:06:24.528Z", @@ -93786,7 +90312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.618Z", @@ -93813,7 +90338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.669Z", @@ -93840,7 +90364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.669Z", @@ -93867,7 +90390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.669Z", @@ -93894,7 +90416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.669Z", @@ -93921,7 +90442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.669Z", @@ -93948,7 +90468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.669Z", @@ -93975,7 +90494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.669Z", @@ -94002,7 +90520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.669Z", @@ -94029,7 +90546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.669Z", @@ -94056,7 +90572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.669Z", @@ -94083,7 +90598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.670Z", @@ -94110,7 +90624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.670Z", @@ -94137,7 +90650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.670Z", @@ -94164,7 +90676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.670Z", @@ -94191,7 +90702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.670Z", @@ -94218,7 +90728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.670Z", @@ -94245,7 +90754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.670Z", @@ -94272,7 +90780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.670Z", @@ -94299,7 +90806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.670Z", @@ -94326,7 +90832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.670Z", @@ -94353,7 +90858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.670Z", @@ -94380,7 +90884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.670Z", @@ -94407,7 +90910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.670Z", @@ -94434,7 +90936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.670Z", @@ -94461,7 +90962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.670Z", @@ -94488,7 +90988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.670Z", @@ -94515,7 +91014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.670Z", @@ -94542,7 +91040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.670Z", @@ -94569,7 +91066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.671Z", @@ -94596,7 +91092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.671Z", @@ -94623,7 +91118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.671Z", @@ -94650,7 +91144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.671Z", @@ -94677,7 +91170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.671Z", @@ -94704,7 +91196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.671Z", @@ -94731,7 +91222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.671Z", @@ -94758,7 +91248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.671Z", @@ -94785,7 +91274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.671Z", @@ -94812,7 +91300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.671Z", @@ -94839,7 +91326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.671Z", @@ -94866,7 +91352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.671Z", @@ -94893,7 +91378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.671Z", @@ -94920,7 +91404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.671Z", @@ -94947,7 +91430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.671Z", @@ -94974,7 +91456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.671Z", @@ -95001,7 +91482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.671Z", @@ -95028,7 +91508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.671Z", @@ -95055,7 +91534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.671Z", @@ -95082,7 +91560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.671Z", @@ -95109,7 +91586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.671Z", @@ -95136,7 +91612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.671Z", @@ -95163,7 +91638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.671Z", @@ -95190,7 +91664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95217,7 +91690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95244,7 +91716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95271,7 +91742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95298,7 +91768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95325,7 +91794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95352,7 +91820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95379,7 +91846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95406,7 +91872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95433,7 +91898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95460,7 +91924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95487,7 +91950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95514,7 +91976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95541,7 +92002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95568,7 +92028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95595,7 +92054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95622,7 +92080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95649,7 +92106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95676,7 +92132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95703,7 +92158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95730,7 +92184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95757,7 +92210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95784,7 +92236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95811,7 +92262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95838,7 +92288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.672Z", @@ -95865,7 +92314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.673Z", @@ -95892,7 +92340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.673Z", @@ -95919,7 +92366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.673Z", @@ -95946,7 +92392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.673Z", @@ -95973,7 +92418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.673Z", @@ -96000,7 +92444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.673Z", @@ -96027,7 +92470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.673Z", @@ -96054,7 +92496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.673Z", @@ -96081,7 +92522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.673Z", @@ -96108,7 +92548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.673Z", @@ -96135,7 +92574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.673Z", @@ -96162,7 +92600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.673Z", @@ -96189,7 +92626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.673Z", @@ -96216,7 +92652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.673Z", @@ -96243,7 +92678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.673Z", @@ -96270,7 +92704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.673Z", @@ -96297,7 +92730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.673Z", @@ -96324,7 +92756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.673Z", @@ -96351,7 +92782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.673Z", @@ -96378,7 +92808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.673Z", @@ -96405,7 +92834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.673Z", @@ -96432,7 +92860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.674Z", @@ -96459,7 +92886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.674Z", @@ -96486,7 +92912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.674Z", @@ -96513,7 +92938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.674Z", @@ -96540,7 +92964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.674Z", @@ -96567,7 +92990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.674Z", @@ -96594,7 +93016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.674Z", @@ -96621,7 +93042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:35.674Z", @@ -96646,7 +93066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.341Z", @@ -96673,7 +93092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.387Z", @@ -96700,7 +93118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.387Z", @@ -96727,7 +93144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.387Z", @@ -96754,7 +93170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.387Z", @@ -96781,7 +93196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.387Z", @@ -96808,7 +93222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.387Z", @@ -96835,7 +93248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.387Z", @@ -96862,7 +93274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.387Z", @@ -96889,7 +93300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.387Z", @@ -96916,7 +93326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.387Z", @@ -96943,7 +93352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.387Z", @@ -96970,7 +93378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.387Z", @@ -96997,7 +93404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.387Z", @@ -97024,7 +93430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.387Z", @@ -97051,7 +93456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.387Z", @@ -97078,7 +93482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.387Z", @@ -97105,7 +93508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.387Z", @@ -97132,7 +93534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.387Z", @@ -97159,7 +93560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.387Z", @@ -97186,7 +93586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97213,7 +93612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97240,7 +93638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97267,7 +93664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97294,7 +93690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97321,7 +93716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97348,7 +93742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97375,7 +93768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97402,7 +93794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97429,7 +93820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97456,7 +93846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97483,7 +93872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97510,7 +93898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97537,7 +93924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97564,7 +93950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97591,7 +93976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97618,7 +94002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97645,7 +94028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97672,7 +94054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97699,7 +94080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97726,7 +94106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97753,7 +94132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97780,7 +94158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97807,7 +94184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97834,7 +94210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97861,7 +94236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97888,7 +94262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97915,7 +94288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97942,7 +94314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97969,7 +94340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -97996,7 +94366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -98023,7 +94392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -98050,7 +94418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -98077,7 +94444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -98104,7 +94470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.388Z", @@ -98131,7 +94496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98158,7 +94522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98185,7 +94548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98212,7 +94574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98239,7 +94600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98266,7 +94626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98293,7 +94652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98320,7 +94678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98347,7 +94704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98374,7 +94730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98401,7 +94756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98428,7 +94782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98455,7 +94808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98482,7 +94834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98509,7 +94860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98536,7 +94886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98563,7 +94912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98590,7 +94938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98617,7 +94964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98644,7 +94990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98671,7 +95016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98698,7 +95042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98725,7 +95068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98752,7 +95094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98779,7 +95120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98806,7 +95146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98833,7 +95172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98860,7 +95198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98887,7 +95224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98914,7 +95250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98941,7 +95276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98968,7 +95302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.389Z", @@ -98995,7 +95328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.390Z", @@ -99022,7 +95354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.390Z", @@ -99049,7 +95380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.390Z", @@ -99076,7 +95406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.390Z", @@ -99103,7 +95432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.390Z", @@ -99130,7 +95458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.390Z", @@ -99157,7 +95484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.390Z", @@ -99184,7 +95510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.390Z", @@ -99211,7 +95536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.390Z", @@ -99238,7 +95562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.390Z", @@ -99265,7 +95588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.390Z", @@ -99292,7 +95614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.390Z", @@ -99319,7 +95640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.390Z", @@ -99346,7 +95666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.390Z", @@ -99373,7 +95692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.390Z", @@ -99400,7 +95718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.390Z", @@ -99427,7 +95744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.390Z", @@ -99454,7 +95770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.390Z", @@ -99481,7 +95796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:41.390Z", @@ -99506,7 +95820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.374Z", @@ -99533,7 +95846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.460Z", @@ -99560,7 +95872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.460Z", @@ -99587,7 +95898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.460Z", @@ -99614,7 +95924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.460Z", @@ -99641,7 +95950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.460Z", @@ -99668,7 +95976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.460Z", @@ -99695,7 +96002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.460Z", @@ -99722,7 +96028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.461Z", @@ -99749,7 +96054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.461Z", @@ -99776,7 +96080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.461Z", @@ -99803,7 +96106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.461Z", @@ -99830,7 +96132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.461Z", @@ -99857,7 +96158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.461Z", @@ -99884,7 +96184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.461Z", @@ -99911,7 +96210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.461Z", @@ -99938,7 +96236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.461Z", @@ -99965,7 +96262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.461Z", @@ -99992,7 +96288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.461Z", @@ -100019,7 +96314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.461Z", @@ -100046,7 +96340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.461Z", @@ -100073,7 +96366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.461Z", @@ -100100,7 +96392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.462Z", @@ -100127,7 +96418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.462Z", @@ -100154,7 +96444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.462Z", @@ -100181,7 +96470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.462Z", @@ -100208,7 +96496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.462Z", @@ -100235,7 +96522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.462Z", @@ -100262,7 +96548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.462Z", @@ -100289,7 +96574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.462Z", @@ -100316,7 +96600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.462Z", @@ -100343,7 +96626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.462Z", @@ -100370,7 +96652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.462Z", @@ -100397,7 +96678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.462Z", @@ -100424,7 +96704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.462Z", @@ -100451,7 +96730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.463Z", @@ -100478,7 +96756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.463Z", @@ -100505,7 +96782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.463Z", @@ -100532,7 +96808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.463Z", @@ -100559,7 +96834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.463Z", @@ -100586,7 +96860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.463Z", @@ -100613,7 +96886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.463Z", @@ -100640,7 +96912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.463Z", @@ -100667,7 +96938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.463Z", @@ -100694,7 +96964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.463Z", @@ -100721,7 +96990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.464Z", @@ -100748,7 +97016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.464Z", @@ -100775,7 +97042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.464Z", @@ -100802,7 +97068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.464Z", @@ -100829,7 +97094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.464Z", @@ -100856,7 +97120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.464Z", @@ -100883,7 +97146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.464Z", @@ -100910,7 +97172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.464Z", @@ -100937,7 +97198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.464Z", @@ -100964,7 +97224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.464Z", @@ -100991,7 +97250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.464Z", @@ -101018,7 +97276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.464Z", @@ -101045,7 +97302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.464Z", @@ -101072,7 +97328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.464Z", @@ -101099,7 +97354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.464Z", @@ -101126,7 +97380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.464Z", @@ -101153,7 +97406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.465Z", @@ -101180,7 +97432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.465Z", @@ -101207,7 +97458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.465Z", @@ -101234,7 +97484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.465Z", @@ -101261,7 +97510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.465Z", @@ -101288,7 +97536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.465Z", @@ -101315,7 +97562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.465Z", @@ -101342,7 +97588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.465Z", @@ -101369,7 +97614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.465Z", @@ -101396,7 +97640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.465Z", @@ -101423,7 +97666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.465Z", @@ -101450,7 +97692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.465Z", @@ -101477,7 +97718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.465Z", @@ -101504,7 +97744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.465Z", @@ -101531,7 +97770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.465Z", @@ -101558,7 +97796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.466Z", @@ -101585,7 +97822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.466Z", @@ -101612,7 +97848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.466Z", @@ -101639,7 +97874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.466Z", @@ -101666,7 +97900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.466Z", @@ -101693,7 +97926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.466Z", @@ -101720,7 +97952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.466Z", @@ -101747,7 +97978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.466Z", @@ -101774,7 +98004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.466Z", @@ -101801,7 +98030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.466Z", @@ -101828,7 +98056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.466Z", @@ -101855,7 +98082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.466Z", @@ -101882,7 +98108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.466Z", @@ -101909,7 +98134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.466Z", @@ -101936,7 +98160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.466Z", @@ -101963,7 +98186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.467Z", @@ -101990,7 +98212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.467Z", @@ -102017,7 +98238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.467Z", @@ -102044,7 +98264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.467Z", @@ -102071,7 +98290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.467Z", @@ -102098,7 +98316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.467Z", @@ -102125,7 +98342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.467Z", @@ -102152,7 +98368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.467Z", @@ -102179,7 +98394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.467Z", @@ -102206,7 +98420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.467Z", @@ -102233,7 +98446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.467Z", @@ -102260,7 +98472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.467Z", @@ -102287,7 +98498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.468Z", @@ -102314,7 +98524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.468Z", @@ -102341,7 +98550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:49.468Z", @@ -102366,7 +98574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.850Z", @@ -102393,7 +98600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.897Z", @@ -102420,7 +98626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.897Z", @@ -102447,7 +98652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.897Z", @@ -102474,7 +98678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.897Z", @@ -102501,7 +98704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.897Z", @@ -102528,7 +98730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.897Z", @@ -102555,7 +98756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.897Z", @@ -102582,7 +98782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.897Z", @@ -102609,7 +98808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.897Z", @@ -102636,7 +98834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.897Z", @@ -102663,7 +98860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.897Z", @@ -102690,7 +98886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.897Z", @@ -102717,7 +98912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.897Z", @@ -102744,7 +98938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.897Z", @@ -102771,7 +98964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.897Z", @@ -102798,7 +98990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.897Z", @@ -102825,7 +99016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.897Z", @@ -102852,7 +99042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.897Z", @@ -102879,7 +99068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.897Z", @@ -102906,7 +99094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.897Z", @@ -102933,7 +99120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.897Z", @@ -102960,7 +99146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -102987,7 +99172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103014,7 +99198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103041,7 +99224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103068,7 +99250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103095,7 +99276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103122,7 +99302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103149,7 +99328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103176,7 +99354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103203,7 +99380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103230,7 +99406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103257,7 +99432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103284,7 +99458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103311,7 +99484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103338,7 +99510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103365,7 +99536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103392,7 +99562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103419,7 +99588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103446,7 +99614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103473,7 +99640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103500,7 +99666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103527,7 +99692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103554,7 +99718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103581,7 +99744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103608,7 +99770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103635,7 +99796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103662,7 +99822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103689,7 +99848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103716,7 +99874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103743,7 +99900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103770,7 +99926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103797,7 +99952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103824,7 +99978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103851,7 +100004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.898Z", @@ -103878,7 +100030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -103905,7 +100056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -103932,7 +100082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -103959,7 +100108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -103986,7 +100134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104013,7 +100160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104040,7 +100186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104067,7 +100212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104094,7 +100238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104121,7 +100264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104148,7 +100290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104175,7 +100316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104202,7 +100342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104229,7 +100368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104256,7 +100394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104283,7 +100420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104310,7 +100446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104337,7 +100472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104364,7 +100498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104391,7 +100524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104418,7 +100550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104445,7 +100576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104472,7 +100602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104499,7 +100628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104526,7 +100654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104553,7 +100680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104580,7 +100706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104607,7 +100732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104634,7 +100758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104661,7 +100784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104688,7 +100810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104715,7 +100836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104742,7 +100862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104769,7 +100888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104796,7 +100914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104823,7 +100940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.899Z", @@ -104850,7 +100966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.900Z", @@ -104877,7 +100992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.900Z", @@ -104904,7 +101018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.900Z", @@ -104931,7 +101044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.900Z", @@ -104958,7 +101070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.900Z", @@ -104985,7 +101096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.900Z", @@ -105012,7 +101122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.900Z", @@ -105039,7 +101148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.900Z", @@ -105066,7 +101174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.900Z", @@ -105093,7 +101200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.900Z", @@ -105120,7 +101226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.900Z", @@ -105147,7 +101252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.900Z", @@ -105174,7 +101278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.900Z", @@ -105201,7 +101304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:09:53.900Z", @@ -105226,7 +101328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.533Z", @@ -105253,7 +101354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.624Z", @@ -105280,7 +101380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.624Z", @@ -105307,7 +101406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.624Z", @@ -105334,7 +101432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.624Z", @@ -105361,7 +101458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.624Z", @@ -105388,7 +101484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.624Z", @@ -105415,7 +101510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.624Z", @@ -105442,7 +101536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.624Z", @@ -105469,7 +101562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.624Z", @@ -105496,7 +101588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.624Z", @@ -105523,7 +101614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.624Z", @@ -105550,7 +101640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.624Z", @@ -105577,7 +101666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.624Z", @@ -105604,7 +101692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.624Z", @@ -105631,7 +101718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.624Z", @@ -105658,7 +101744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.624Z", @@ -105685,7 +101770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.624Z", @@ -105712,7 +101796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.624Z", @@ -105739,7 +101822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.624Z", @@ -105766,7 +101848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -105793,7 +101874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -105820,7 +101900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -105847,7 +101926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -105874,7 +101952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -105901,7 +101978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -105928,7 +102004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -105955,7 +102030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -105982,7 +102056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106009,7 +102082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106036,7 +102108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106063,7 +102134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106090,7 +102160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106117,7 +102186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106144,7 +102212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106171,7 +102238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106198,7 +102264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106225,7 +102290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106252,7 +102316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106279,7 +102342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106306,7 +102368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106333,7 +102394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106360,7 +102420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106387,7 +102446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106414,7 +102472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106441,7 +102498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106468,7 +102524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106495,7 +102550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106522,7 +102576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106549,7 +102602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106576,7 +102628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106603,7 +102654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106630,7 +102680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106657,7 +102706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106684,7 +102732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106711,7 +102758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106738,7 +102784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106765,7 +102810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106792,7 +102836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106819,7 +102862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.625Z", @@ -106846,7 +102888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -106873,7 +102914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -106900,7 +102940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -106927,7 +102966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -106954,7 +102992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -106981,7 +103018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107008,7 +103044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107035,7 +103070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107062,7 +103096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107089,7 +103122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107116,7 +103148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107143,7 +103174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107170,7 +103200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107197,7 +103226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107224,7 +103252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107251,7 +103278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107278,7 +103304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107305,7 +103330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107332,7 +103356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107359,7 +103382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107386,7 +103408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107413,7 +103434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107440,7 +103460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107467,7 +103486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107494,7 +103512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107521,7 +103538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107548,7 +103564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107575,7 +103590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107602,7 +103616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107629,7 +103642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107656,7 +103668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107683,7 +103694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.626Z", @@ -107710,7 +103720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.627Z", @@ -107737,7 +103746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.627Z", @@ -107764,7 +103772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.627Z", @@ -107791,7 +103798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.627Z", @@ -107818,7 +103824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.627Z", @@ -107845,7 +103850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.627Z", @@ -107872,7 +103876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.627Z", @@ -107899,7 +103902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.627Z", @@ -107926,7 +103928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.627Z", @@ -107953,7 +103954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.627Z", @@ -107980,7 +103980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.627Z", @@ -108007,7 +104006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.627Z", @@ -108034,7 +104032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.627Z", @@ -108061,7 +104058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:46.627Z", @@ -108086,7 +104082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.916Z", @@ -108113,7 +104108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.946Z", @@ -108140,7 +104134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.946Z", @@ -108167,7 +104160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.946Z", @@ -108194,7 +104186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.946Z", @@ -108221,7 +104212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.946Z", @@ -108248,7 +104238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.946Z", @@ -108275,7 +104264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.947Z", @@ -108302,7 +104290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.947Z", @@ -108329,7 +104316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.947Z", @@ -108356,7 +104342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.947Z", @@ -108383,7 +104368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.947Z", @@ -108410,7 +104394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.947Z", @@ -108437,7 +104420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.947Z", @@ -108464,7 +104446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.947Z", @@ -108491,7 +104472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.947Z", @@ -108518,7 +104498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.947Z", @@ -108545,7 +104524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.947Z", @@ -108572,7 +104550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.947Z", @@ -108599,7 +104576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.947Z", @@ -108626,7 +104602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.947Z", @@ -108653,7 +104628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.947Z", @@ -108680,7 +104654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.948Z", @@ -108707,7 +104680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.948Z", @@ -108734,7 +104706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.948Z", @@ -108761,7 +104732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.948Z", @@ -108788,7 +104758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.948Z", @@ -108815,7 +104784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.948Z", @@ -108842,7 +104810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.948Z", @@ -108869,7 +104836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.948Z", @@ -108896,7 +104862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.948Z", @@ -108923,7 +104888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.948Z", @@ -108950,7 +104914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.948Z", @@ -108977,7 +104940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.948Z", @@ -109004,7 +104966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.948Z", @@ -109031,7 +104992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.948Z", @@ -109058,7 +105018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.948Z", @@ -109085,7 +105044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.948Z", @@ -109112,7 +105070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.948Z", @@ -109139,7 +105096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.949Z", @@ -109166,7 +105122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.949Z", @@ -109193,7 +105148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.949Z", @@ -109220,7 +105174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.949Z", @@ -109247,7 +105200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.949Z", @@ -109274,7 +105226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.949Z", @@ -109301,7 +105252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.949Z", @@ -109328,7 +105278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.949Z", @@ -109355,7 +105304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.949Z", @@ -109382,7 +105330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.949Z", @@ -109409,7 +105356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.949Z", @@ -109436,7 +105382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.949Z", @@ -109463,7 +105408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.949Z", @@ -109490,7 +105434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.949Z", @@ -109517,7 +105460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.949Z", @@ -109544,7 +105486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.949Z", @@ -109571,7 +105512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.949Z", @@ -109598,7 +105538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.949Z", @@ -109625,7 +105564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.950Z", @@ -109652,7 +105590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.950Z", @@ -109679,7 +105616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.950Z", @@ -109706,7 +105642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.950Z", @@ -109733,7 +105668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.950Z", @@ -109760,7 +105694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.950Z", @@ -109787,7 +105720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.950Z", @@ -109814,7 +105746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.950Z", @@ -109841,7 +105772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.950Z", @@ -109868,7 +105798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.950Z", @@ -109895,7 +105824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.950Z", @@ -109922,7 +105850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.950Z", @@ -109949,7 +105876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.950Z", @@ -109976,7 +105902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.950Z", @@ -110003,7 +105928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.950Z", @@ -110030,7 +105954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.950Z", @@ -110057,7 +105980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.950Z", @@ -110084,7 +106006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.950Z", @@ -110111,7 +106032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.950Z", @@ -110138,7 +106058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.951Z", @@ -110165,7 +106084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.951Z", @@ -110192,7 +106110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.951Z", @@ -110219,7 +106136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.951Z", @@ -110246,7 +106162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.951Z", @@ -110273,7 +106188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.951Z", @@ -110300,7 +106214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.951Z", @@ -110327,7 +106240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.951Z", @@ -110354,7 +106266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.951Z", @@ -110381,7 +106292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.951Z", @@ -110408,7 +106318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.951Z", @@ -110435,7 +106344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.951Z", @@ -110462,7 +106370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.951Z", @@ -110489,7 +106396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.951Z", @@ -110516,7 +106422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.951Z", @@ -110543,7 +106448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.951Z", @@ -110570,7 +106474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.951Z", @@ -110597,7 +106500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.952Z", @@ -110624,7 +106526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.952Z", @@ -110651,7 +106552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.952Z", @@ -110678,7 +106578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.952Z", @@ -110705,7 +106604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.952Z", @@ -110732,7 +106630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.952Z", @@ -110759,7 +106656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.952Z", @@ -110786,7 +106682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.952Z", @@ -110813,7 +106708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.952Z", @@ -110840,7 +106734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.952Z", @@ -110867,7 +106760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.952Z", @@ -110894,7 +106786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.952Z", @@ -110921,7 +106812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:52.952Z", @@ -110946,7 +106836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.656Z", @@ -110973,7 +106862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.690Z", @@ -111000,7 +106888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.690Z", @@ -111027,7 +106914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111054,7 +106940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111081,7 +106966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111108,7 +106992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111135,7 +107018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111162,7 +107044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111189,7 +107070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111216,7 +107096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111243,7 +107122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111270,7 +107148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111297,7 +107174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111324,7 +107200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111351,7 +107226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111378,7 +107252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111405,7 +107278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111432,7 +107304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111459,7 +107330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111486,7 +107356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111513,7 +107382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111540,7 +107408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111567,7 +107434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111594,7 +107460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111621,7 +107486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111648,7 +107512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111675,7 +107538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111702,7 +107564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111729,7 +107590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111756,7 +107616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111783,7 +107642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111810,7 +107668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111837,7 +107694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111864,7 +107720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111891,7 +107746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111918,7 +107772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111945,7 +107798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111972,7 +107824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -111999,7 +107850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -112026,7 +107876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.691Z", @@ -112053,7 +107902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112080,7 +107928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112107,7 +107954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112134,7 +107980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112161,7 +108006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112188,7 +108032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112215,7 +108058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112242,7 +108084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112269,7 +108110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112296,7 +108136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112323,7 +108162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112350,7 +108188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112377,7 +108214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112404,7 +108240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112431,7 +108266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112458,7 +108292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112485,7 +108318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112512,7 +108344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112539,7 +108370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112566,7 +108396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112593,7 +108422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112620,7 +108448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112647,7 +108474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112674,7 +108500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112701,7 +108526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112728,7 +108552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112755,7 +108578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.692Z", @@ -112782,7 +108604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.693Z", @@ -112809,7 +108630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.693Z", @@ -112836,7 +108656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.693Z", @@ -112863,7 +108682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.693Z", @@ -112890,7 +108708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.693Z", @@ -112917,7 +108734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.693Z", @@ -112944,7 +108760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.693Z", @@ -112971,7 +108786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.693Z", @@ -112998,7 +108812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.693Z", @@ -113025,7 +108838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.693Z", @@ -113052,7 +108864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.693Z", @@ -113079,7 +108890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.693Z", @@ -113106,7 +108916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.693Z", @@ -113133,7 +108942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.694Z", @@ -113160,7 +108968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.694Z", @@ -113187,7 +108994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.694Z", @@ -113214,7 +109020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.694Z", @@ -113241,7 +109046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.694Z", @@ -113268,7 +109072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.694Z", @@ -113295,7 +109098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.694Z", @@ -113322,7 +109124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.694Z", @@ -113349,7 +109150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.694Z", @@ -113376,7 +109176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.694Z", @@ -113403,7 +109202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.694Z", @@ -113430,7 +109228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.694Z", @@ -113457,7 +109254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.694Z", @@ -113484,7 +109280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.695Z", @@ -113511,7 +109306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.695Z", @@ -113538,7 +109332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.695Z", @@ -113565,7 +109358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.695Z", @@ -113592,7 +109384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.695Z", @@ -113619,7 +109410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.695Z", @@ -113646,7 +109436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.695Z", @@ -113673,7 +109462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.695Z", @@ -113700,7 +109488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.695Z", @@ -113727,7 +109514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.695Z", @@ -113754,7 +109540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.695Z", @@ -113781,7 +109566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:12:59.695Z", @@ -113806,7 +109590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.911Z", @@ -113833,7 +109616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.960Z", @@ -113860,7 +109642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.960Z", @@ -113887,7 +109668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.960Z", @@ -113914,7 +109694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.960Z", @@ -113941,7 +109720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.960Z", @@ -113968,7 +109746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.960Z", @@ -113995,7 +109772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.960Z", @@ -114022,7 +109798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.960Z", @@ -114049,7 +109824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.960Z", @@ -114076,7 +109850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.960Z", @@ -114103,7 +109876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.960Z", @@ -114130,7 +109902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.960Z", @@ -114157,7 +109928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114184,7 +109954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114211,7 +109980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114238,7 +110006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114265,7 +110032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114292,7 +110058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114319,7 +110084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114346,7 +110110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114373,7 +110136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114400,7 +110162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114427,7 +110188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114454,7 +110214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114481,7 +110240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114508,7 +110266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114535,7 +110292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114562,7 +110318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114589,7 +110344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114616,7 +110370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114643,7 +110396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114670,7 +110422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114697,7 +110448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114724,7 +110474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114751,7 +110500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114778,7 +110526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.961Z", @@ -114805,7 +110552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -114832,7 +110578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -114859,7 +110604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -114886,7 +110630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -114913,7 +110656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -114940,7 +110682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -114967,7 +110708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -114994,7 +110734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -115021,7 +110760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -115048,7 +110786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -115075,7 +110812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -115102,7 +110838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -115129,7 +110864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -115156,7 +110890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -115183,7 +110916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -115210,7 +110942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -115237,7 +110968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -115264,7 +110994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -115291,7 +111020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -115318,7 +111046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -115345,7 +111072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -115372,7 +111098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -115399,7 +111124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -115426,7 +111150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -115453,7 +111176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.962Z", @@ -115480,7 +111202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -115507,7 +111228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -115534,7 +111254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -115561,7 +111280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -115588,7 +111306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -115615,7 +111332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -115642,7 +111358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -115669,7 +111384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -115696,7 +111410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -115723,7 +111436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -115750,7 +111462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -115777,7 +111488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -115804,7 +111514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -115831,7 +111540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -115858,7 +111566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -115885,7 +111592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -115912,7 +111618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -115939,7 +111644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -115966,7 +111670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -115993,7 +111696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -116020,7 +111722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -116047,7 +111748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -116074,7 +111774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -116101,7 +111800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -116128,7 +111826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -116155,7 +111852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -116182,7 +111878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.963Z", @@ -116209,7 +111904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.964Z", @@ -116236,7 +111930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.964Z", @@ -116263,7 +111956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.964Z", @@ -116290,7 +111982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.964Z", @@ -116317,7 +112008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.964Z", @@ -116344,7 +112034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.964Z", @@ -116371,7 +112060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.964Z", @@ -116398,7 +112086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.964Z", @@ -116425,7 +112112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.964Z", @@ -116452,7 +112138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.964Z", @@ -116479,7 +112164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.964Z", @@ -116506,7 +112190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.964Z", @@ -116533,7 +112216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.964Z", @@ -116560,7 +112242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.964Z", @@ -116587,7 +112268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.964Z", @@ -116614,7 +112294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.964Z", @@ -116641,7 +112320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:13:04.964Z", @@ -116666,7 +112344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.414Z", @@ -116693,7 +112370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.519Z", @@ -116720,7 +112396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.519Z", @@ -116747,7 +112422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.519Z", @@ -116774,7 +112448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.519Z", @@ -116801,7 +112474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.519Z", @@ -116828,7 +112500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.519Z", @@ -116855,7 +112526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.519Z", @@ -116882,7 +112552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.519Z", @@ -116909,7 +112578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.519Z", @@ -116936,7 +112604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.519Z", @@ -116963,7 +112630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.519Z", @@ -116990,7 +112656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.519Z", @@ -117017,7 +112682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.519Z", @@ -117044,7 +112708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.519Z", @@ -117071,7 +112734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.519Z", @@ -117098,7 +112760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.519Z", @@ -117125,7 +112786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.519Z", @@ -117152,7 +112812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.519Z", @@ -117179,7 +112838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.519Z", @@ -117206,7 +112864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.519Z", @@ -117233,7 +112890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117260,7 +112916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117287,7 +112942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117314,7 +112968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117341,7 +112994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117368,7 +113020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117395,7 +113046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117422,7 +113072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117449,7 +113098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117476,7 +113124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117503,7 +113150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117530,7 +113176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117557,7 +113202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117584,7 +113228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117611,7 +113254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117638,7 +113280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117665,7 +113306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117692,7 +113332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117719,7 +113358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117746,7 +113384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117773,7 +113410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117800,7 +113436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117827,7 +113462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117854,7 +113488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117881,7 +113514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117908,7 +113540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117935,7 +113566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117962,7 +113592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -117989,7 +113618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -118016,7 +113644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -118043,7 +113670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -118070,7 +113696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.520Z", @@ -118097,7 +113722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118124,7 +113748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118151,7 +113774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118178,7 +113800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118205,7 +113826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118232,7 +113852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118259,7 +113878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118286,7 +113904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118313,7 +113930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118340,7 +113956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118367,7 +113982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118394,7 +114008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118421,7 +114034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118448,7 +114060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118475,7 +114086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118502,7 +114112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118529,7 +114138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118556,7 +114164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118583,7 +114190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118610,7 +114216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118637,7 +114242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118664,7 +114268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118691,7 +114294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118718,7 +114320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118745,7 +114346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118772,7 +114372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118799,7 +114398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118826,7 +114424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118853,7 +114450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118880,7 +114476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118907,7 +114502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118934,7 +114528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118961,7 +114554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -118988,7 +114580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -119015,7 +114606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.521Z", @@ -119042,7 +114632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119069,7 +114658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119096,7 +114684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119123,7 +114710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119150,7 +114736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119177,7 +114762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119204,7 +114788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119231,7 +114814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119258,7 +114840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119285,7 +114866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119312,7 +114892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119339,7 +114918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119366,7 +114944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119393,7 +114970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119420,7 +114996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119447,7 +115022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119474,7 +115048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119501,7 +115074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119528,7 +115100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119555,7 +115126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119582,7 +115152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119609,7 +115178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119636,7 +115204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119663,7 +115230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119690,7 +115256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119717,7 +115282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119744,7 +115308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119771,7 +115334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119798,7 +115360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119825,7 +115386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119852,7 +115412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119879,7 +115438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119906,7 +115464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119933,7 +115490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119960,7 +115516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.522Z", @@ -119987,7 +115542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120014,7 +115568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120041,7 +115594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120068,7 +115620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120095,7 +115646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120122,7 +115672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120149,7 +115698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120176,7 +115724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120203,7 +115750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120230,7 +115776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120257,7 +115802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120284,7 +115828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120311,7 +115854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120338,7 +115880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120365,7 +115906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120392,7 +115932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120419,7 +115958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120446,7 +115984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120473,7 +116010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120500,7 +116036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120527,7 +116062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120554,7 +116088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120581,7 +116114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120608,7 +116140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120635,7 +116166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120662,7 +116192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120689,7 +116218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120716,7 +116244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120743,7 +116270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120770,7 +116296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120797,7 +116322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120824,7 +116348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120851,7 +116374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.523Z", @@ -120878,7 +116400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -120905,7 +116426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -120932,7 +116452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -120959,7 +116478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -120986,7 +116504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121013,7 +116530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121040,7 +116556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121067,7 +116582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121094,7 +116608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121121,7 +116634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121148,7 +116660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121175,7 +116686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121202,7 +116712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121229,7 +116738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121256,7 +116764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121283,7 +116790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121310,7 +116816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121337,7 +116842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121364,7 +116868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121391,7 +116894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121418,7 +116920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121445,7 +116946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121472,7 +116972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121499,7 +116998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121526,7 +117024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121553,7 +117050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121580,7 +117076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121607,7 +117102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121634,7 +117128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121661,7 +117154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121688,7 +117180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121715,7 +117206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.524Z", @@ -121742,7 +117232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.525Z", @@ -121769,7 +117258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.525Z", @@ -121796,7 +117284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.525Z", @@ -121823,7 +117310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.525Z", @@ -121850,7 +117336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.525Z", @@ -121877,7 +117362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.525Z", @@ -121904,7 +117388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.525Z", @@ -121931,7 +117414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.525Z", @@ -121958,7 +117440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.525Z", @@ -121985,7 +117466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.525Z", @@ -122012,7 +117492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.525Z", @@ -122039,7 +117518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.525Z", @@ -122066,7 +117544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.525Z", @@ -122093,7 +117570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.525Z", @@ -122120,7 +117596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.525Z", @@ -122147,7 +117622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.525Z", @@ -122174,7 +117648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.525Z", @@ -122201,7 +117674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.525Z", @@ -122228,7 +117700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.525Z", @@ -122255,7 +117726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.525Z", @@ -122282,7 +117752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.525Z", @@ -122309,7 +117778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.525Z", @@ -122336,7 +117804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:05.525Z", @@ -122361,7 +117828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.626Z", @@ -122388,7 +117854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.755Z", @@ -122415,7 +117880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.755Z", @@ -122442,7 +117906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.755Z", @@ -122469,7 +117932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.755Z", @@ -122496,7 +117958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.755Z", @@ -122523,7 +117984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.755Z", @@ -122550,7 +118010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.755Z", @@ -122577,7 +118036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.755Z", @@ -122604,7 +118062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.756Z", @@ -122631,7 +118088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.756Z", @@ -122658,7 +118114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.756Z", @@ -122685,7 +118140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.756Z", @@ -122712,7 +118166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.756Z", @@ -122739,7 +118192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.756Z", @@ -122766,7 +118218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.756Z", @@ -122793,7 +118244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.756Z", @@ -122820,7 +118270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.756Z", @@ -122847,7 +118296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.757Z", @@ -122874,7 +118322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.757Z", @@ -122901,7 +118348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.757Z", @@ -122928,7 +118374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.757Z", @@ -122955,7 +118400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.757Z", @@ -122982,7 +118426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.757Z", @@ -123009,7 +118452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.757Z", @@ -123036,7 +118478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.757Z", @@ -123063,7 +118504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.757Z", @@ -123090,7 +118530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.757Z", @@ -123117,7 +118556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.757Z", @@ -123144,7 +118582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.757Z", @@ -123171,7 +118608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.757Z", @@ -123198,7 +118634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.757Z", @@ -123225,7 +118660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.757Z", @@ -123252,7 +118686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.758Z", @@ -123279,7 +118712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.758Z", @@ -123306,7 +118738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.758Z", @@ -123333,7 +118764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.758Z", @@ -123360,7 +118790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.758Z", @@ -123387,7 +118816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.758Z", @@ -123414,7 +118842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.758Z", @@ -123441,7 +118868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.758Z", @@ -123468,7 +118894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.758Z", @@ -123495,7 +118920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.758Z", @@ -123522,7 +118946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.758Z", @@ -123549,7 +118972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.758Z", @@ -123576,7 +118998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.758Z", @@ -123603,7 +119024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.758Z", @@ -123630,7 +119050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.758Z", @@ -123657,7 +119076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.758Z", @@ -123684,7 +119102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.759Z", @@ -123711,7 +119128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.759Z", @@ -123738,7 +119154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.759Z", @@ -123765,7 +119180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.759Z", @@ -123792,7 +119206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.759Z", @@ -123819,7 +119232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.759Z", @@ -123846,7 +119258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.759Z", @@ -123873,7 +119284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.759Z", @@ -123900,7 +119310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.759Z", @@ -123927,7 +119336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.759Z", @@ -123954,7 +119362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.759Z", @@ -123981,7 +119388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.759Z", @@ -124008,7 +119414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.759Z", @@ -124035,7 +119440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.759Z", @@ -124062,7 +119466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.759Z", @@ -124089,7 +119492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.759Z", @@ -124116,7 +119518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.759Z", @@ -124143,7 +119544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.759Z", @@ -124170,7 +119570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.760Z", @@ -124197,7 +119596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.760Z", @@ -124224,7 +119622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.760Z", @@ -124251,7 +119648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.760Z", @@ -124278,7 +119674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.760Z", @@ -124305,7 +119700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.760Z", @@ -124332,7 +119726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.760Z", @@ -124359,7 +119752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.760Z", @@ -124386,7 +119778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.760Z", @@ -124413,7 +119804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.760Z", @@ -124440,7 +119830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.760Z", @@ -124467,7 +119856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.760Z", @@ -124494,7 +119882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.760Z", @@ -124521,7 +119908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.760Z", @@ -124548,7 +119934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.760Z", @@ -124575,7 +119960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.760Z", @@ -124602,7 +119986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.760Z", @@ -124629,7 +120012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.760Z", @@ -124656,7 +120038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.760Z", @@ -124683,7 +120064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.761Z", @@ -124710,7 +120090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.761Z", @@ -124737,7 +120116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.761Z", @@ -124764,7 +120142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.761Z", @@ -124791,7 +120168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.761Z", @@ -124818,7 +120194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.761Z", @@ -124845,7 +120220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.761Z", @@ -124872,7 +120246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.761Z", @@ -124899,7 +120272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.761Z", @@ -124926,7 +120298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.761Z", @@ -124953,7 +120324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.761Z", @@ -124980,7 +120350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.761Z", @@ -125007,7 +120376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.761Z", @@ -125034,7 +120402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.761Z", @@ -125061,7 +120428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.761Z", @@ -125088,7 +120454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.761Z", @@ -125115,7 +120480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.761Z", @@ -125142,7 +120506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.761Z", @@ -125169,7 +120532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.762Z", @@ -125196,7 +120558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.762Z", @@ -125223,7 +120584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.762Z", @@ -125250,7 +120610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.762Z", @@ -125277,7 +120636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.762Z", @@ -125304,7 +120662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.762Z", @@ -125331,7 +120688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.762Z", @@ -125358,7 +120714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.762Z", @@ -125385,7 +120740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.762Z", @@ -125412,7 +120766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.762Z", @@ -125439,7 +120792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.762Z", @@ -125466,7 +120818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.762Z", @@ -125493,7 +120844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.763Z", @@ -125520,7 +120870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.763Z", @@ -125547,7 +120896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.763Z", @@ -125574,7 +120922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.763Z", @@ -125601,7 +120948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.763Z", @@ -125628,7 +120974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.763Z", @@ -125655,7 +121000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.763Z", @@ -125682,7 +121026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.763Z", @@ -125709,7 +121052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.764Z", @@ -125736,7 +121078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.764Z", @@ -125763,7 +121104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.764Z", @@ -125790,7 +121130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.764Z", @@ -125817,7 +121156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.764Z", @@ -125844,7 +121182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.764Z", @@ -125871,7 +121208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.764Z", @@ -125898,7 +121234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.764Z", @@ -125925,7 +121260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.764Z", @@ -125952,7 +121286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.764Z", @@ -125979,7 +121312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.764Z", @@ -126006,7 +121338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.764Z", @@ -126033,7 +121364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.764Z", @@ -126060,7 +121390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.765Z", @@ -126087,7 +121416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.765Z", @@ -126114,7 +121442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.765Z", @@ -126141,7 +121468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.765Z", @@ -126168,7 +121494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.765Z", @@ -126195,7 +121520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.765Z", @@ -126222,7 +121546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.765Z", @@ -126249,7 +121572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.765Z", @@ -126276,7 +121598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.765Z", @@ -126303,7 +121624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.765Z", @@ -126330,7 +121650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.765Z", @@ -126357,7 +121676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.765Z", @@ -126384,7 +121702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.765Z", @@ -126411,7 +121728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.765Z", @@ -126438,7 +121754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.765Z", @@ -126465,7 +121780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.765Z", @@ -126492,7 +121806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.766Z", @@ -126519,7 +121832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.766Z", @@ -126546,7 +121858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.766Z", @@ -126573,7 +121884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.766Z", @@ -126600,7 +121910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.766Z", @@ -126627,7 +121936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.766Z", @@ -126654,7 +121962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.766Z", @@ -126681,7 +121988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.766Z", @@ -126708,7 +122014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.766Z", @@ -126735,7 +122040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.766Z", @@ -126762,7 +122066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.766Z", @@ -126789,7 +122092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.766Z", @@ -126816,7 +122118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.766Z", @@ -126843,7 +122144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.766Z", @@ -126870,7 +122170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.766Z", @@ -126897,7 +122196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.766Z", @@ -126924,7 +122222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.766Z", @@ -126951,7 +122248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.767Z", @@ -126978,7 +122274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.767Z", @@ -127005,7 +122300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.767Z", @@ -127032,7 +122326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.767Z", @@ -127059,7 +122352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.767Z", @@ -127086,7 +122378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.767Z", @@ -127113,7 +122404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.767Z", @@ -127140,7 +122430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.767Z", @@ -127167,7 +122456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.767Z", @@ -127194,7 +122482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.767Z", @@ -127221,7 +122508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.767Z", @@ -127248,7 +122534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.767Z", @@ -127275,7 +122560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.767Z", @@ -127302,7 +122586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.767Z", @@ -127329,7 +122612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.767Z", @@ -127356,7 +122638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.768Z", @@ -127383,7 +122664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.768Z", @@ -127410,7 +122690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.768Z", @@ -127437,7 +122716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.768Z", @@ -127464,7 +122742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.768Z", @@ -127491,7 +122768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.768Z", @@ -127518,7 +122794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.768Z", @@ -127545,7 +122820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.768Z", @@ -127572,7 +122846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.768Z", @@ -127599,7 +122872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.768Z", @@ -127626,7 +122898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.768Z", @@ -127653,7 +122924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.768Z", @@ -127680,7 +122950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.768Z", @@ -127707,7 +122976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.768Z", @@ -127734,7 +123002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.768Z", @@ -127761,7 +123028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.768Z", @@ -127788,7 +123054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.768Z", @@ -127815,7 +123080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.768Z", @@ -127842,7 +123106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.768Z", @@ -127869,7 +123132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.768Z", @@ -127896,7 +123158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.768Z", @@ -127923,7 +123184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.769Z", @@ -127950,7 +123210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.769Z", @@ -127977,7 +123236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.769Z", @@ -128004,7 +123262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.769Z", @@ -128031,7 +123288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:11.769Z", @@ -128056,7 +123312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.182Z", @@ -128083,7 +123338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.252Z", @@ -128110,7 +123364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.252Z", @@ -128137,7 +123390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128164,7 +123416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128191,7 +123442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128218,7 +123468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128245,7 +123494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128272,7 +123520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128299,7 +123546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128326,7 +123572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128353,7 +123598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128380,7 +123624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128407,7 +123650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128434,7 +123676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128461,7 +123702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128488,7 +123728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128515,7 +123754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128542,7 +123780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128569,7 +123806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128596,7 +123832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128623,7 +123858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128650,7 +123884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128677,7 +123910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128704,7 +123936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128731,7 +123962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128758,7 +123988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128785,7 +124014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128812,7 +124040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128839,7 +124066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128866,7 +124092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128893,7 +124118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128920,7 +124144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128947,7 +124170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -128974,7 +124196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -129001,7 +124222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -129028,7 +124248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.253Z", @@ -129055,7 +124274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.254Z", @@ -129082,7 +124300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.254Z", @@ -129109,7 +124326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.254Z", @@ -129136,7 +124352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.254Z", @@ -129163,7 +124378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.254Z", @@ -129190,7 +124404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.254Z", @@ -129217,7 +124430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.254Z", @@ -129244,7 +124456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.254Z", @@ -129271,7 +124482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.254Z", @@ -129298,7 +124508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.254Z", @@ -129325,7 +124534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.254Z", @@ -129352,7 +124560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.259Z", @@ -129379,7 +124586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.259Z", @@ -129406,7 +124612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.259Z", @@ -129433,7 +124638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.259Z", @@ -129460,7 +124664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.259Z", @@ -129487,7 +124690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.259Z", @@ -129514,7 +124716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.259Z", @@ -129541,7 +124742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.259Z", @@ -129568,7 +124768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.259Z", @@ -129595,7 +124794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.259Z", @@ -129622,7 +124820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.259Z", @@ -129649,7 +124846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.260Z", @@ -129676,7 +124872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.260Z", @@ -129703,7 +124898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.260Z", @@ -129730,7 +124924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.260Z", @@ -129757,7 +124950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.260Z", @@ -129784,7 +124976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.260Z", @@ -129811,7 +125002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.260Z", @@ -129838,7 +125028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.260Z", @@ -129865,7 +125054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.260Z", @@ -129892,7 +125080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.260Z", @@ -129919,7 +125106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.260Z", @@ -129946,7 +125132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.260Z", @@ -129973,7 +125158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.260Z", @@ -130000,7 +125184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.260Z", @@ -130027,7 +125210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.260Z", @@ -130054,7 +125236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.260Z", @@ -130081,7 +125262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.260Z", @@ -130108,7 +125288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.260Z", @@ -130135,7 +125314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.260Z", @@ -130162,7 +125340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.260Z", @@ -130189,7 +125366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.261Z", @@ -130216,7 +125392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.261Z", @@ -130243,7 +125418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.261Z", @@ -130270,7 +125444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.261Z", @@ -130297,7 +125470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.261Z", @@ -130324,7 +125496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.261Z", @@ -130351,7 +125522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.261Z", @@ -130378,7 +125548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.261Z", @@ -130405,7 +125574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.261Z", @@ -130432,7 +125600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.261Z", @@ -130459,7 +125626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.261Z", @@ -130486,7 +125652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.261Z", @@ -130513,7 +125678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.261Z", @@ -130540,7 +125704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.261Z", @@ -130567,7 +125730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.261Z", @@ -130594,7 +125756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.261Z", @@ -130621,7 +125782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -130648,7 +125808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -130675,7 +125834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -130702,7 +125860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -130729,7 +125886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -130756,7 +125912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -130783,7 +125938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -130810,7 +125964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -130837,7 +125990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -130864,7 +126016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -130891,7 +126042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -130918,7 +126068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -130945,7 +126094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -130972,7 +126120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -130999,7 +126146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -131026,7 +126172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -131053,7 +126198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -131080,7 +126224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -131107,7 +126250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -131134,7 +126276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -131161,7 +126302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -131188,7 +126328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -131215,7 +126354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -131242,7 +126380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -131269,7 +126406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -131296,7 +126432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -131323,7 +126458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -131350,7 +126484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.262Z", @@ -131377,7 +126510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -131404,7 +126536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -131431,7 +126562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -131458,7 +126588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -131485,7 +126614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -131512,7 +126640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -131539,7 +126666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -131566,7 +126692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -131593,7 +126718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -131620,7 +126744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -131647,7 +126770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -131674,7 +126796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -131701,7 +126822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -131728,7 +126848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -131755,7 +126874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -131782,7 +126900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -131809,7 +126926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -131836,7 +126952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -131863,7 +126978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -131890,7 +127004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -131917,7 +127030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -131944,7 +127056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -131971,7 +127082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -131998,7 +127108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -132025,7 +127134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -132052,7 +127160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -132079,7 +127186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -132106,7 +127212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -132133,7 +127238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -132160,7 +127264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -132187,7 +127290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -132214,7 +127316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -132241,7 +127342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.263Z", @@ -132268,7 +127368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132295,7 +127394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132322,7 +127420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132349,7 +127446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132376,7 +127472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132403,7 +127498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132430,7 +127524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132457,7 +127550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132484,7 +127576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132511,7 +127602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132538,7 +127628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132565,7 +127654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132592,7 +127680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132619,7 +127706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132646,7 +127732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132673,7 +127758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132700,7 +127784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132727,7 +127810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132754,7 +127836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132781,7 +127862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132808,7 +127888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132835,7 +127914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132862,7 +127940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132889,7 +127966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132916,7 +127992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132943,7 +128018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132970,7 +128044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -132997,7 +128070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -133024,7 +128096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -133051,7 +128122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -133078,7 +128148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -133105,7 +128174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -133132,7 +128200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -133159,7 +128226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -133186,7 +128252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.264Z", @@ -133213,7 +128278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.265Z", @@ -133240,7 +128304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.265Z", @@ -133267,7 +128330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.265Z", @@ -133294,7 +128356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.265Z", @@ -133321,7 +128382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.265Z", @@ -133348,7 +128408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.265Z", @@ -133375,7 +128434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.265Z", @@ -133402,7 +128460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.265Z", @@ -133429,7 +128486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.265Z", @@ -133456,7 +128512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.265Z", @@ -133483,7 +128538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.265Z", @@ -133510,7 +128564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.265Z", @@ -133537,7 +128590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.265Z", @@ -133564,7 +128616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.265Z", @@ -133591,7 +128642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.265Z", @@ -133618,7 +128668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.265Z", @@ -133645,7 +128694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.265Z", @@ -133672,7 +128720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.265Z", @@ -133699,7 +128746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.265Z", @@ -133726,7 +128772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:16.265Z", @@ -133751,7 +128796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.502Z", @@ -133778,7 +128822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.581Z", @@ -133805,7 +128848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.581Z", @@ -133832,7 +128874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.581Z", @@ -133859,7 +128900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.581Z", @@ -133886,7 +128926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.581Z", @@ -133913,7 +128952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.581Z", @@ -133940,7 +128978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.581Z", @@ -133967,7 +129004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.581Z", @@ -133994,7 +129030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.581Z", @@ -134021,7 +129056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.581Z", @@ -134048,7 +129082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.581Z", @@ -134075,7 +129108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.581Z", @@ -134102,7 +129134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.581Z", @@ -134129,7 +129160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.581Z", @@ -134156,7 +129186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134183,7 +129212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134210,7 +129238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134237,7 +129264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134264,7 +129290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134291,7 +129316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134318,7 +129342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134345,7 +129368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134372,7 +129394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134399,7 +129420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134426,7 +129446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134453,7 +129472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134480,7 +129498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134507,7 +129524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134534,7 +129550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134561,7 +129576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134588,7 +129602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134615,7 +129628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134642,7 +129654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134669,7 +129680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134696,7 +129706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134723,7 +129732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134750,7 +129758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134777,7 +129784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134804,7 +129810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134831,7 +129836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134858,7 +129862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134885,7 +129888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134912,7 +129914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134939,7 +129940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134966,7 +129966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -134993,7 +129992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -135020,7 +130018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -135047,7 +130044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -135074,7 +130070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -135101,7 +130096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -135128,7 +130122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -135155,7 +130148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -135182,7 +130174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -135209,7 +130200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -135236,7 +130226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.582Z", @@ -135263,7 +130252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135290,7 +130278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135317,7 +130304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135344,7 +130330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135371,7 +130356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135398,7 +130382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135425,7 +130408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135452,7 +130434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135479,7 +130460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135506,7 +130486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135533,7 +130512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135560,7 +130538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135587,7 +130564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135614,7 +130590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135641,7 +130616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135668,7 +130642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135695,7 +130668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135722,7 +130694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135749,7 +130720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135776,7 +130746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135803,7 +130772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135830,7 +130798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135857,7 +130824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135884,7 +130850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135911,7 +130876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135938,7 +130902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135965,7 +130928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -135992,7 +130954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -136019,7 +130980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -136046,7 +131006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -136073,7 +131032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -136100,7 +131058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -136127,7 +131084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -136154,7 +131110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -136181,7 +131136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -136208,7 +131162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -136235,7 +131188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -136262,7 +131214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -136289,7 +131240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -136316,7 +131266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -136343,7 +131292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.583Z", @@ -136370,7 +131318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -136397,7 +131344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -136424,7 +131370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -136451,7 +131396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -136478,7 +131422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -136505,7 +131448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -136532,7 +131474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -136559,7 +131500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -136586,7 +131526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -136613,7 +131552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -136640,7 +131578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -136667,7 +131604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -136694,7 +131630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -136721,7 +131656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -136748,7 +131682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -136775,7 +131708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -136802,7 +131734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -136829,7 +131760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -136856,7 +131786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -136883,7 +131812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -136910,7 +131838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -136937,7 +131864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -136964,7 +131890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -136991,7 +131916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -137018,7 +131942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -137045,7 +131968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -137072,7 +131994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -137099,7 +132020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -137126,7 +132046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -137153,7 +132072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -137180,7 +132098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -137207,7 +132124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -137234,7 +132150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -137261,7 +132176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -137288,7 +132202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -137315,7 +132228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -137342,7 +132254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -137369,7 +132280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -137396,7 +132306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -137423,7 +132332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -137450,7 +132358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -137477,7 +132384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.584Z", @@ -137504,7 +132410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -137531,7 +132436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -137558,7 +132462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -137585,7 +132488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -137612,7 +132514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -137639,7 +132540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -137666,7 +132566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -137693,7 +132592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -137720,7 +132618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -137747,7 +132644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -137774,7 +132670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -137801,7 +132696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -137828,7 +132722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -137855,7 +132748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -137882,7 +132774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -137909,7 +132800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -137936,7 +132826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -137963,7 +132852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -137990,7 +132878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -138017,7 +132904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -138044,7 +132930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -138071,7 +132956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -138098,7 +132982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -138125,7 +133008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -138152,7 +133034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -138179,7 +133060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.585Z", @@ -138206,7 +133086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.586Z", @@ -138233,7 +133112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.586Z", @@ -138260,7 +133138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.586Z", @@ -138287,7 +133164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.586Z", @@ -138314,7 +133190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.586Z", @@ -138341,7 +133216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.586Z", @@ -138368,7 +133242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.586Z", @@ -138395,7 +133268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.586Z", @@ -138422,7 +133294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.586Z", @@ -138449,7 +133320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.586Z", @@ -138476,7 +133346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.586Z", @@ -138503,7 +133372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.586Z", @@ -138530,7 +133398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.586Z", @@ -138557,7 +133424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.586Z", @@ -138584,7 +133450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.586Z", @@ -138611,7 +133476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.586Z", @@ -138638,7 +133502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.586Z", @@ -138665,7 +133528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.587Z", @@ -138692,7 +133554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.587Z", @@ -138719,7 +133580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.587Z", @@ -138746,7 +133606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.587Z", @@ -138773,7 +133632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.587Z", @@ -138800,7 +133658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.587Z", @@ -138827,7 +133684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.587Z", @@ -138854,7 +133710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.587Z", @@ -138881,7 +133736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.587Z", @@ -138908,7 +133762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.587Z", @@ -138935,7 +133788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.587Z", @@ -138962,7 +133814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.587Z", @@ -138989,7 +133840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.588Z", @@ -139016,7 +133866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.588Z", @@ -139043,7 +133892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.588Z", @@ -139070,7 +133918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.588Z", @@ -139097,7 +133944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.588Z", @@ -139124,7 +133970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.588Z", @@ -139151,7 +133996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.588Z", @@ -139178,7 +134022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.588Z", @@ -139205,7 +134048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.588Z", @@ -139232,7 +134074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.589Z", @@ -139259,7 +134100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.589Z", @@ -139286,7 +134126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.589Z", @@ -139313,7 +134152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.589Z", @@ -139340,7 +134178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.589Z", @@ -139367,7 +134204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.589Z", @@ -139394,7 +134230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.589Z", @@ -139421,7 +134256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:18:20.589Z", @@ -139446,7 +134280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.920Z", @@ -139473,7 +134306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.954Z", @@ -139500,7 +134332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.955Z", @@ -139527,7 +134358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.955Z", @@ -139554,7 +134384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.955Z", @@ -139581,7 +134410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.955Z", @@ -139608,7 +134436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.955Z", @@ -139635,7 +134462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.955Z", @@ -139662,7 +134488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.955Z", @@ -139689,7 +134514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.955Z", @@ -139716,7 +134540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.955Z", @@ -139743,7 +134566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.955Z", @@ -139770,7 +134592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.955Z", @@ -139797,7 +134618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.955Z", @@ -139824,7 +134644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.955Z", @@ -139851,7 +134670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.955Z", @@ -139878,7 +134696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.955Z", @@ -139905,7 +134722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.956Z", @@ -139932,7 +134748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.956Z", @@ -139959,7 +134774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.956Z", @@ -139986,7 +134800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.956Z", @@ -140013,7 +134826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.956Z", @@ -140040,7 +134852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.956Z", @@ -140067,7 +134878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.956Z", @@ -140094,7 +134904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.956Z", @@ -140121,7 +134930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.956Z", @@ -140148,7 +134956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.956Z", @@ -140175,7 +134982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.956Z", @@ -140202,7 +135008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.956Z", @@ -140229,7 +135034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.956Z", @@ -140256,7 +135060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.956Z", @@ -140283,7 +135086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.956Z", @@ -140310,7 +135112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.956Z", @@ -140337,7 +135138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.956Z", @@ -140364,7 +135164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.956Z", @@ -140391,7 +135190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.956Z", @@ -140418,7 +135216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.956Z", @@ -140445,7 +135242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.957Z", @@ -140472,7 +135268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.957Z", @@ -140499,7 +135294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.957Z", @@ -140526,7 +135320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.957Z", @@ -140553,7 +135346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.957Z", @@ -140580,7 +135372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.957Z", @@ -140607,7 +135398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.957Z", @@ -140634,7 +135424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.957Z", @@ -140661,7 +135450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.957Z", @@ -140688,7 +135476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.957Z", @@ -140715,7 +135502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.957Z", @@ -140742,7 +135528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.957Z", @@ -140769,7 +135554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.957Z", @@ -140796,7 +135580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.957Z", @@ -140823,7 +135606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.957Z", @@ -140850,7 +135632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.957Z", @@ -140877,7 +135658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.957Z", @@ -140904,7 +135684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.957Z", @@ -140931,7 +135710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.957Z", @@ -140958,7 +135736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.958Z", @@ -140985,7 +135762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.958Z", @@ -141012,7 +135788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.958Z", @@ -141039,7 +135814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.958Z", @@ -141066,7 +135840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.958Z", @@ -141093,7 +135866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.958Z", @@ -141120,7 +135892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.958Z", @@ -141147,7 +135918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.958Z", @@ -141174,7 +135944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.958Z", @@ -141201,7 +135970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.958Z", @@ -141228,7 +135996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.958Z", @@ -141255,7 +136022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.958Z", @@ -141282,7 +136048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.958Z", @@ -141309,7 +136074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.958Z", @@ -141336,7 +136100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.958Z", @@ -141363,7 +136126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.958Z", @@ -141390,7 +136152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.958Z", @@ -141417,7 +136178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.958Z", @@ -141444,7 +136204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.958Z", @@ -141471,7 +136230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.958Z", @@ -141498,7 +136256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.958Z", @@ -141525,7 +136282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -141552,7 +136308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -141579,7 +136334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -141606,7 +136360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -141633,7 +136386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -141660,7 +136412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -141687,7 +136438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -141714,7 +136464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -141741,7 +136490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -141768,7 +136516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -141795,7 +136542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -141822,7 +136568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -141849,7 +136594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -141876,7 +136620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -141903,7 +136646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -141930,7 +136672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -141957,7 +136698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -141984,7 +136724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -142011,7 +136750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -142038,7 +136776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -142065,7 +136802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -142092,7 +136828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -142119,7 +136854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -142146,7 +136880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -142173,7 +136906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -142200,7 +136932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -142227,7 +136958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -142254,7 +136984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -142281,7 +137010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:53.959Z", @@ -142306,7 +137034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.347Z", @@ -142333,7 +137060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.383Z", @@ -142360,7 +137086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.383Z", @@ -142387,7 +137112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.383Z", @@ -142414,7 +137138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.383Z", @@ -142441,7 +137164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.383Z", @@ -142468,7 +137190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.383Z", @@ -142495,7 +137216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.383Z", @@ -142522,7 +137242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.383Z", @@ -142549,7 +137268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.383Z", @@ -142576,7 +137294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.383Z", @@ -142603,7 +137320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.383Z", @@ -142630,7 +137346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.383Z", @@ -142657,7 +137372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.383Z", @@ -142684,7 +137398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.383Z", @@ -142711,7 +137424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.383Z", @@ -142738,7 +137450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.384Z", @@ -142765,7 +137476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.384Z", @@ -142792,7 +137502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.384Z", @@ -142819,7 +137528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.384Z", @@ -142846,7 +137554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.384Z", @@ -142873,7 +137580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.384Z", @@ -142900,7 +137606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.384Z", @@ -142927,7 +137632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.384Z", @@ -142954,7 +137658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.384Z", @@ -142981,7 +137684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.384Z", @@ -143008,7 +137710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.384Z", @@ -143035,7 +137736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.384Z", @@ -143062,7 +137762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.384Z", @@ -143089,7 +137788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.384Z", @@ -143116,7 +137814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.384Z", @@ -143143,7 +137840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.384Z", @@ -143170,7 +137866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.384Z", @@ -143197,7 +137892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.385Z", @@ -143224,7 +137918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.385Z", @@ -143251,7 +137944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.385Z", @@ -143278,7 +137970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.385Z", @@ -143305,7 +137996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.385Z", @@ -143332,7 +138022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.385Z", @@ -143359,7 +138048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.385Z", @@ -143386,7 +138074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.385Z", @@ -143413,7 +138100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.385Z", @@ -143440,7 +138126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.385Z", @@ -143467,7 +138152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.385Z", @@ -143494,7 +138178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.386Z", @@ -143521,7 +138204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.386Z", @@ -143548,7 +138230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.386Z", @@ -143575,7 +138256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.386Z", @@ -143602,7 +138282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.386Z", @@ -143629,7 +138308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.386Z", @@ -143656,7 +138334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.386Z", @@ -143683,7 +138360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.386Z", @@ -143710,7 +138386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.386Z", @@ -143737,7 +138412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.386Z", @@ -143764,7 +138438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.386Z", @@ -143791,7 +138464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.386Z", @@ -143818,7 +138490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.387Z", @@ -143845,7 +138516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.387Z", @@ -143872,7 +138542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.387Z", @@ -143899,7 +138568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.387Z", @@ -143926,7 +138594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.387Z", @@ -143953,7 +138620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.387Z", @@ -143980,7 +138646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.387Z", @@ -144007,7 +138672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.387Z", @@ -144034,7 +138698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.387Z", @@ -144061,7 +138724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.387Z", @@ -144088,7 +138750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.387Z", @@ -144115,7 +138776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.387Z", @@ -144142,7 +138802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.387Z", @@ -144169,7 +138828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.387Z", @@ -144196,7 +138854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.387Z", @@ -144223,7 +138880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.387Z", @@ -144250,7 +138906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.387Z", @@ -144277,7 +138932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.387Z", @@ -144304,7 +138958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.387Z", @@ -144331,7 +138984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.387Z", @@ -144358,7 +139010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.387Z", @@ -144385,7 +139036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -144412,7 +139062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -144439,7 +139088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -144466,7 +139114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -144493,7 +139140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -144520,7 +139166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -144547,7 +139192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -144574,7 +139218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -144601,7 +139244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -144628,7 +139270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -144655,7 +139296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -144682,7 +139322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -144709,7 +139348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -144736,7 +139374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -144763,7 +139400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -144790,7 +139426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -144817,7 +139452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -144844,7 +139478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -144871,7 +139504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -144898,7 +139530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -144925,7 +139556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -144952,7 +139582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -144979,7 +139608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -145006,7 +139634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -145033,7 +139660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -145060,7 +139686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -145087,7 +139712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -145114,7 +139738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -145141,7 +139764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:19:59.388Z", @@ -145166,7 +139788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:03.914Z", @@ -145193,7 +139814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.008Z", @@ -145220,7 +139840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145247,7 +139866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145274,7 +139892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145301,7 +139918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145328,7 +139944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145355,7 +139970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145382,7 +139996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145409,7 +140022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145436,7 +140048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145463,7 +140074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145490,7 +140100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145517,7 +140126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145544,7 +140152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145571,7 +140178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145598,7 +140204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145625,7 +140230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145652,7 +140256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145679,7 +140282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145706,7 +140308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145733,7 +140334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145760,7 +140360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145787,7 +140386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145814,7 +140412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145841,7 +140438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145868,7 +140464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.009Z", @@ -145895,7 +140490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.010Z", @@ -145922,7 +140516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.010Z", @@ -145949,7 +140542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.010Z", @@ -145976,7 +140568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.010Z", @@ -146003,7 +140594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.010Z", @@ -146030,7 +140620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.010Z", @@ -146057,7 +140646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.010Z", @@ -146084,7 +140672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.010Z", @@ -146111,7 +140698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.010Z", @@ -146138,7 +140724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.010Z", @@ -146165,7 +140750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.010Z", @@ -146192,7 +140776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.010Z", @@ -146219,7 +140802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.010Z", @@ -146246,7 +140828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.010Z", @@ -146273,7 +140854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.010Z", @@ -146300,7 +140880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.010Z", @@ -146327,7 +140906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.010Z", @@ -146354,7 +140932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.010Z", @@ -146381,7 +140958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.010Z", @@ -146408,7 +140984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.011Z", @@ -146435,7 +141010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.011Z", @@ -146462,7 +141036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.011Z", @@ -146489,7 +141062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.011Z", @@ -146516,7 +141088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.011Z", @@ -146543,7 +141114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.011Z", @@ -146570,7 +141140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.011Z", @@ -146597,7 +141166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.011Z", @@ -146624,7 +141192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.011Z", @@ -146651,7 +141218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.011Z", @@ -146678,7 +141244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.011Z", @@ -146705,7 +141270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.011Z", @@ -146732,7 +141296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.011Z", @@ -146759,7 +141322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.011Z", @@ -146786,7 +141348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.011Z", @@ -146813,7 +141374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.011Z", @@ -146840,7 +141400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.011Z", @@ -146867,7 +141426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.011Z", @@ -146894,7 +141452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.012Z", @@ -146921,7 +141478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.012Z", @@ -146948,7 +141504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.012Z", @@ -146975,7 +141530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.012Z", @@ -147002,7 +141556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.012Z", @@ -147029,7 +141582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.012Z", @@ -147056,7 +141608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.012Z", @@ -147083,7 +141634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.012Z", @@ -147110,7 +141660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.012Z", @@ -147137,7 +141686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.012Z", @@ -147164,7 +141712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.012Z", @@ -147191,7 +141738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.012Z", @@ -147218,7 +141764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.012Z", @@ -147245,7 +141790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.012Z", @@ -147272,7 +141816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.012Z", @@ -147299,7 +141842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.012Z", @@ -147326,7 +141868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.012Z", @@ -147353,7 +141894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.013Z", @@ -147380,7 +141920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.013Z", @@ -147407,7 +141946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.013Z", @@ -147434,7 +141972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.013Z", @@ -147461,7 +141998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.013Z", @@ -147488,7 +142024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.013Z", @@ -147515,7 +142050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.013Z", @@ -147542,7 +142076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.013Z", @@ -147569,7 +142102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.013Z", @@ -147596,7 +142128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.013Z", @@ -147623,7 +142154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.013Z", @@ -147650,7 +142180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.013Z", @@ -147677,7 +142206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.013Z", @@ -147704,7 +142232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.013Z", @@ -147731,7 +142258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.013Z", @@ -147758,7 +142284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.013Z", @@ -147785,7 +142310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.013Z", @@ -147812,7 +142336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.014Z", @@ -147839,7 +142362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.014Z", @@ -147866,7 +142388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.014Z", @@ -147893,7 +142414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.014Z", @@ -147920,7 +142440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.014Z", @@ -147947,7 +142466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.014Z", @@ -147974,7 +142492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.014Z", @@ -148001,7 +142518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:04.014Z", @@ -148026,7 +142542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:08.917Z", @@ -148053,7 +142568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.009Z", @@ -148080,7 +142594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.009Z", @@ -148107,7 +142620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.009Z", @@ -148134,7 +142646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.009Z", @@ -148161,7 +142672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.009Z", @@ -148188,7 +142698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148215,7 +142724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148242,7 +142750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148269,7 +142776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148296,7 +142802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148323,7 +142828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148350,7 +142854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148377,7 +142880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148404,7 +142906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148431,7 +142932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148458,7 +142958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148485,7 +142984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148512,7 +143010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148539,7 +143036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148566,7 +143062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148593,7 +143088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148620,7 +143114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148647,7 +143140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148674,7 +143166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148701,7 +143192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148728,7 +143218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148755,7 +143244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148782,7 +143270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148809,7 +143296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148836,7 +143322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148863,7 +143348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148890,7 +143374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148917,7 +143400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148944,7 +143426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148971,7 +143452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -148998,7 +143478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -149025,7 +143504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -149052,7 +143530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -149079,7 +143556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -149106,7 +143582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -149133,7 +143608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.010Z", @@ -149160,7 +143634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149187,7 +143660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149214,7 +143686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149241,7 +143712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149268,7 +143738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149295,7 +143764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149322,7 +143790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149349,7 +143816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149376,7 +143842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149403,7 +143868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149430,7 +143894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149457,7 +143920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149484,7 +143946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149511,7 +143972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149538,7 +143998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149565,7 +144024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149592,7 +144050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149619,7 +144076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149646,7 +144102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149673,7 +144128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149700,7 +144154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149727,7 +144180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149754,7 +144206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149781,7 +144232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149808,7 +144258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149835,7 +144284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149862,7 +144310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149889,7 +144336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149916,7 +144362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149943,7 +144388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149970,7 +144414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.011Z", @@ -149997,7 +144440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150024,7 +144466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150051,7 +144492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150078,7 +144518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150105,7 +144544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150132,7 +144570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150159,7 +144596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150186,7 +144622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150213,7 +144648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150240,7 +144674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150267,7 +144700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150294,7 +144726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150321,7 +144752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150348,7 +144778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150375,7 +144804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150402,7 +144830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150429,7 +144856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150456,7 +144882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150483,7 +144908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150510,7 +144934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150537,7 +144960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150564,7 +144986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150591,7 +145012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150618,7 +145038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.012Z", @@ -150645,7 +145064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.013Z", @@ -150672,7 +145090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.013Z", @@ -150699,7 +145116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.013Z", @@ -150726,7 +145142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.013Z", @@ -150753,7 +145168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.013Z", @@ -150780,7 +145194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.013Z", @@ -150807,7 +145220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.013Z", @@ -150834,7 +145246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.013Z", @@ -150861,7 +145272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:20:09.013Z", @@ -150886,7 +145296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.857Z", @@ -150913,7 +145322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.930Z", @@ -150940,7 +145348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.930Z", @@ -150967,7 +145374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.931Z", @@ -150994,7 +145400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.931Z", @@ -151021,7 +145426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.931Z", @@ -151048,7 +145452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.931Z", @@ -151075,7 +145478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.931Z", @@ -151102,7 +145504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.931Z", @@ -151129,7 +145530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.931Z", @@ -151156,7 +145556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.931Z", @@ -151183,7 +145582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.931Z", @@ -151210,7 +145608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.931Z", @@ -151237,7 +145634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.931Z", @@ -151264,7 +145660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.931Z", @@ -151291,7 +145686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.931Z", @@ -151318,7 +145712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.931Z", @@ -151345,7 +145738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.931Z", @@ -151372,7 +145764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.932Z", @@ -151399,7 +145790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.932Z", @@ -151426,7 +145816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.932Z", @@ -151453,7 +145842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.932Z", @@ -151480,7 +145868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.932Z", @@ -151507,7 +145894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.932Z", @@ -151534,7 +145920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.932Z", @@ -151561,7 +145946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.932Z", @@ -151588,7 +145972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.932Z", @@ -151615,7 +145998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.932Z", @@ -151642,7 +146024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.932Z", @@ -151669,7 +146050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.932Z", @@ -151696,7 +146076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.932Z", @@ -151723,7 +146102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.932Z", @@ -151750,7 +146128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.932Z", @@ -151777,7 +146154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.932Z", @@ -151804,7 +146180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.932Z", @@ -151831,7 +146206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.932Z", @@ -151858,7 +146232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.932Z", @@ -151885,7 +146258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.932Z", @@ -151912,7 +146284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.932Z", @@ -151939,7 +146310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.933Z", @@ -151966,7 +146336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.933Z", @@ -151993,7 +146362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.933Z", @@ -152020,7 +146388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.933Z", @@ -152047,7 +146414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.933Z", @@ -152074,7 +146440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.933Z", @@ -152101,7 +146466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.933Z", @@ -152128,7 +146492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.933Z", @@ -152155,7 +146518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.933Z", @@ -152182,7 +146544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.933Z", @@ -152209,7 +146570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.933Z", @@ -152236,7 +146596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.933Z", @@ -152263,7 +146622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.933Z", @@ -152290,7 +146648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.933Z", @@ -152317,7 +146674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.934Z", @@ -152344,7 +146700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.934Z", @@ -152371,7 +146726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.934Z", @@ -152398,7 +146752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.934Z", @@ -152425,7 +146778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.934Z", @@ -152452,7 +146804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.934Z", @@ -152479,7 +146830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.934Z", @@ -152506,7 +146856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.934Z", @@ -152533,7 +146882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.934Z", @@ -152560,7 +146908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.934Z", @@ -152587,7 +146934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.934Z", @@ -152614,7 +146960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.935Z", @@ -152641,7 +146986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.935Z", @@ -152668,7 +147012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.935Z", @@ -152695,7 +147038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.935Z", @@ -152722,7 +147064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.935Z", @@ -152749,7 +147090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.935Z", @@ -152776,7 +147116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.935Z", @@ -152803,7 +147142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.935Z", @@ -152830,7 +147168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.936Z", @@ -152857,7 +147194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.936Z", @@ -152884,7 +147220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.936Z", @@ -152911,7 +147246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.936Z", @@ -152938,7 +147272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.936Z", @@ -152965,7 +147298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.936Z", @@ -152992,7 +147324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.936Z", @@ -153019,7 +147350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.936Z", @@ -153046,7 +147376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.936Z", @@ -153073,7 +147402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.936Z", @@ -153100,7 +147428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.936Z", @@ -153127,7 +147454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.937Z", @@ -153154,7 +147480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.937Z", @@ -153181,7 +147506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.937Z", @@ -153208,7 +147532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.937Z", @@ -153235,7 +147558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.937Z", @@ -153262,7 +147584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.937Z", @@ -153289,7 +147610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.937Z", @@ -153316,7 +147636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.937Z", @@ -153343,7 +147662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.937Z", @@ -153370,7 +147688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.937Z", @@ -153397,7 +147714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.937Z", @@ -153424,7 +147740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.937Z", @@ -153451,7 +147766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.938Z", @@ -153478,7 +147792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.938Z", @@ -153505,7 +147818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.938Z", @@ -153532,7 +147844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.938Z", @@ -153559,7 +147870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.938Z", @@ -153586,7 +147896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.938Z", @@ -153613,7 +147922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.938Z", @@ -153640,7 +147948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.938Z", @@ -153667,7 +147974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.938Z", @@ -153694,7 +148000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.938Z", @@ -153721,7 +148026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:38.938Z", @@ -153746,7 +148050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.806Z", @@ -153773,7 +148076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.874Z", @@ -153800,7 +148102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.874Z", @@ -153827,7 +148128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.874Z", @@ -153854,7 +148154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.874Z", @@ -153881,7 +148180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -153908,7 +148206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -153935,7 +148232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -153962,7 +148258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -153989,7 +148284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154016,7 +148310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154043,7 +148336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154070,7 +148362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154097,7 +148388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154124,7 +148414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154151,7 +148440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154178,7 +148466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154205,7 +148492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154232,7 +148518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154259,7 +148544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154286,7 +148570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154313,7 +148596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154340,7 +148622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154367,7 +148648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154394,7 +148674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154421,7 +148700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154448,7 +148726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154475,7 +148752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154502,7 +148778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154529,7 +148804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154556,7 +148830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154583,7 +148856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154610,7 +148882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154637,7 +148908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154664,7 +148934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.875Z", @@ -154691,7 +148960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -154718,7 +148986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -154745,7 +149012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -154772,7 +149038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -154799,7 +149064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -154826,7 +149090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -154853,7 +149116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -154880,7 +149142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -154907,7 +149168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -154934,7 +149194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -154961,7 +149220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -154988,7 +149246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -155015,7 +149272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -155042,7 +149298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -155069,7 +149324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -155096,7 +149350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -155123,7 +149376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -155150,7 +149402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -155177,7 +149428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -155204,7 +149454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -155231,7 +149480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -155258,7 +149506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -155285,7 +149532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -155312,7 +149558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -155339,7 +149584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -155366,7 +149610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -155393,7 +149636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -155420,7 +149662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -155447,7 +149688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -155474,7 +149714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -155501,7 +149740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -155528,7 +149766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.876Z", @@ -155555,7 +149792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -155582,7 +149818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -155609,7 +149844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -155636,7 +149870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -155663,7 +149896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -155690,7 +149922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -155717,7 +149948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -155744,7 +149974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -155771,7 +150000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -155798,7 +150026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -155825,7 +150052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -155852,7 +150078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -155879,7 +150104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -155906,7 +150130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -155933,7 +150156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -155960,7 +150182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -155987,7 +150208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -156014,7 +150234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -156041,7 +150260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -156068,7 +150286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -156095,7 +150312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -156122,7 +150338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -156149,7 +150364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -156176,7 +150390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -156203,7 +150416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -156230,7 +150442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.877Z", @@ -156257,7 +150468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.878Z", @@ -156284,7 +150494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.878Z", @@ -156311,7 +150520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.878Z", @@ -156338,7 +150546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.878Z", @@ -156365,7 +150572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.878Z", @@ -156392,7 +150598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.878Z", @@ -156419,7 +150624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.878Z", @@ -156446,7 +150650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.878Z", @@ -156473,7 +150676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.878Z", @@ -156500,7 +150702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.878Z", @@ -156527,7 +150728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.878Z", @@ -156554,7 +150754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.878Z", @@ -156581,7 +150780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:42.878Z", @@ -156606,7 +150804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.211Z", @@ -156633,7 +150830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.255Z", @@ -156660,7 +150856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.255Z", @@ -156687,7 +150882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.255Z", @@ -156714,7 +150908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.255Z", @@ -156741,7 +150934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.255Z", @@ -156768,7 +150960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.255Z", @@ -156795,7 +150986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.255Z", @@ -156822,7 +151012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.255Z", @@ -156849,7 +151038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.255Z", @@ -156876,7 +151064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.255Z", @@ -156903,7 +151090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.255Z", @@ -156930,7 +151116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -156957,7 +151142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -156984,7 +151168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157011,7 +151194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157038,7 +151220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157065,7 +151246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157092,7 +151272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157119,7 +151298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157146,7 +151324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157173,7 +151350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157200,7 +151376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157227,7 +151402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157254,7 +151428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157281,7 +151454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157308,7 +151480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157335,7 +151506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157362,7 +151532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157389,7 +151558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157416,7 +151584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157443,7 +151610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157470,7 +151636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157497,7 +151662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157524,7 +151688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157551,7 +151714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157578,7 +151740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157605,7 +151766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157632,7 +151792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157659,7 +151818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157686,7 +151844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157713,7 +151870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157740,7 +151896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157767,7 +151922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157794,7 +151948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157821,7 +151974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.256Z", @@ -157848,7 +152000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -157875,7 +152026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -157902,7 +152052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -157929,7 +152078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -157956,7 +152104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -157983,7 +152130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158010,7 +152156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158037,7 +152182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158064,7 +152208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158091,7 +152234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158118,7 +152260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158145,7 +152286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158172,7 +152312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158199,7 +152338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158226,7 +152364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158253,7 +152390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158280,7 +152416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158307,7 +152442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158334,7 +152468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158361,7 +152494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158388,7 +152520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158415,7 +152546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158442,7 +152572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158469,7 +152598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158496,7 +152624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158523,7 +152650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158550,7 +152676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158577,7 +152702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158604,7 +152728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158631,7 +152754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158658,7 +152780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158685,7 +152806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158712,7 +152832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158739,7 +152858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158766,7 +152884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158793,7 +152910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158820,7 +152936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.257Z", @@ -158847,7 +152962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.258Z", @@ -158874,7 +152988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.258Z", @@ -158901,7 +153014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.258Z", @@ -158928,7 +153040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.258Z", @@ -158955,7 +153066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.258Z", @@ -158982,7 +153092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.258Z", @@ -159009,7 +153118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.258Z", @@ -159036,7 +153144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.258Z", @@ -159063,7 +153170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.258Z", @@ -159090,7 +153196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.258Z", @@ -159117,7 +153222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.258Z", @@ -159144,7 +153248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.258Z", @@ -159171,7 +153274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.258Z", @@ -159198,7 +153300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.258Z", @@ -159225,7 +153326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.258Z", @@ -159252,7 +153352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.258Z", @@ -159279,7 +153378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.258Z", @@ -159306,7 +153404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.258Z", @@ -159333,7 +153430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.258Z", @@ -159360,7 +153456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.258Z", @@ -159387,7 +153482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.258Z", @@ -159414,7 +153508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.258Z", @@ -159441,7 +153534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:47.258Z", @@ -159466,7 +153558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.797Z", @@ -159493,7 +153584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.855Z", @@ -159520,7 +153610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.855Z", @@ -159547,7 +153636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.855Z", @@ -159574,7 +153662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.855Z", @@ -159601,7 +153688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.855Z", @@ -159628,7 +153714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.855Z", @@ -159655,7 +153740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.855Z", @@ -159682,7 +153766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.855Z", @@ -159709,7 +153792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.855Z", @@ -159736,7 +153818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.855Z", @@ -159763,7 +153844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.855Z", @@ -159790,7 +153870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.855Z", @@ -159817,7 +153896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.855Z", @@ -159844,7 +153922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.855Z", @@ -159871,7 +153948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.855Z", @@ -159898,7 +153974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.855Z", @@ -159925,7 +154000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.855Z", @@ -159952,7 +154026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -159979,7 +154052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160006,7 +154078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160033,7 +154104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160060,7 +154130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160087,7 +154156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160114,7 +154182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160141,7 +154208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160168,7 +154234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160195,7 +154260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160222,7 +154286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160249,7 +154312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160276,7 +154338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160303,7 +154364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160330,7 +154390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160357,7 +154416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160384,7 +154442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160411,7 +154468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160438,7 +154494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160465,7 +154520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160492,7 +154546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160519,7 +154572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160546,7 +154598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160573,7 +154624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160600,7 +154650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160627,7 +154676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160654,7 +154702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160681,7 +154728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160708,7 +154754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.856Z", @@ -160735,7 +154780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.857Z", @@ -160762,7 +154806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.857Z", @@ -160789,7 +154832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.857Z", @@ -160816,7 +154858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.857Z", @@ -160843,7 +154884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.857Z", @@ -160870,7 +154910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.857Z", @@ -160897,7 +154936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.857Z", @@ -160924,7 +154962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.857Z", @@ -160951,7 +154988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.857Z", @@ -160978,7 +155014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.857Z", @@ -161005,7 +155040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.857Z", @@ -161032,7 +155066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.857Z", @@ -161059,7 +155092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.857Z", @@ -161086,7 +155118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.857Z", @@ -161113,7 +155144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.857Z", @@ -161140,7 +155170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.857Z", @@ -161167,7 +155196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.857Z", @@ -161194,7 +155222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.857Z", @@ -161221,7 +155248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.857Z", @@ -161248,7 +155274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.857Z", @@ -161275,7 +155300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.857Z", @@ -161302,7 +155326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.857Z", @@ -161329,7 +155352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.858Z", @@ -161356,7 +155378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.858Z", @@ -161383,7 +155404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.858Z", @@ -161410,7 +155430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.858Z", @@ -161437,7 +155456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.858Z", @@ -161464,7 +155482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.858Z", @@ -161491,7 +155508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.858Z", @@ -161518,7 +155534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.858Z", @@ -161545,7 +155560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.858Z", @@ -161572,7 +155586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.858Z", @@ -161599,7 +155612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.858Z", @@ -161626,7 +155638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.858Z", @@ -161653,7 +155664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.858Z", @@ -161680,7 +155690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.858Z", @@ -161707,7 +155716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.858Z", @@ -161734,7 +155742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.858Z", @@ -161761,7 +155768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.858Z", @@ -161788,7 +155794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.858Z", @@ -161815,7 +155820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.858Z", @@ -161842,7 +155846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.858Z", @@ -161869,7 +155872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.858Z", @@ -161896,7 +155898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.858Z", @@ -161923,7 +155924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.870Z", @@ -161950,7 +155950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.870Z", @@ -161977,7 +155976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.870Z", @@ -162004,7 +156002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.871Z", @@ -162031,7 +156028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.871Z", @@ -162058,7 +156054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.871Z", @@ -162085,7 +156080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.871Z", @@ -162112,7 +156106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.871Z", @@ -162139,7 +156132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.871Z", @@ -162166,7 +156158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.871Z", @@ -162193,7 +156184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.871Z", @@ -162220,7 +156210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.871Z", @@ -162247,7 +156236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.871Z", @@ -162274,7 +156262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.871Z", @@ -162301,7 +156288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:21:50.871Z", @@ -162326,7 +156312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.040Z", @@ -162353,7 +156338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.086Z", @@ -162380,7 +156364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -162407,7 +156390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -162434,7 +156416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -162461,7 +156442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -162488,7 +156468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -162515,7 +156494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -162542,7 +156520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -162569,7 +156546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -162596,7 +156572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -162623,7 +156598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -162650,7 +156624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -162677,7 +156650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -162704,7 +156676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -162731,7 +156702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -162758,7 +156728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -162785,7 +156754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -162812,7 +156780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -162839,7 +156806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -162866,7 +156832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -162893,7 +156858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -162920,7 +156884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -162947,7 +156910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -162974,7 +156936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -163001,7 +156962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -163028,7 +156988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -163055,7 +157014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -163082,7 +157040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -163109,7 +157066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -163136,7 +157092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -163163,7 +157118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.087Z", @@ -163190,7 +157144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163217,7 +157170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163244,7 +157196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163271,7 +157222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163298,7 +157248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163325,7 +157274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163352,7 +157300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163379,7 +157326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163406,7 +157352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163433,7 +157378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163460,7 +157404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163487,7 +157430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163514,7 +157456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163541,7 +157482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163568,7 +157508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163595,7 +157534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163622,7 +157560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163649,7 +157586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163676,7 +157612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163703,7 +157638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163730,7 +157664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163757,7 +157690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163784,7 +157716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163811,7 +157742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163838,7 +157768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163865,7 +157794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163892,7 +157820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163919,7 +157846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163946,7 +157872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -163973,7 +157898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -164000,7 +157924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.088Z", @@ -164027,7 +157950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164054,7 +157976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164081,7 +158002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164108,7 +158028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164135,7 +158054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164162,7 +158080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164189,7 +158106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164216,7 +158132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164243,7 +158158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164270,7 +158184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164297,7 +158210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164324,7 +158236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164351,7 +158262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164378,7 +158288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164405,7 +158314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164432,7 +158340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164459,7 +158366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164486,7 +158392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164513,7 +158418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164540,7 +158444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164567,7 +158470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164594,7 +158496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164621,7 +158522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164648,7 +158548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164675,7 +158574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164702,7 +158600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164729,7 +158626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.089Z", @@ -164756,7 +158652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.090Z", @@ -164783,7 +158678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.090Z", @@ -164810,7 +158704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.090Z", @@ -164837,7 +158730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.090Z", @@ -164864,7 +158756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.090Z", @@ -164891,7 +158782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.090Z", @@ -164918,7 +158808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.090Z", @@ -164945,7 +158834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.090Z", @@ -164972,7 +158860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.090Z", @@ -164999,7 +158886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.090Z", @@ -165026,7 +158912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.090Z", @@ -165053,7 +158938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.090Z", @@ -165080,7 +158964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.090Z", @@ -165107,7 +158990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.090Z", @@ -165134,7 +159016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.090Z", @@ -165161,7 +159042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:05.090Z", @@ -165186,7 +159066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.650Z", @@ -165213,7 +159092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165240,7 +159118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165267,7 +159144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165294,7 +159170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165321,7 +159196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165348,7 +159222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165375,7 +159248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165402,7 +159274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165429,7 +159300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165456,7 +159326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165483,7 +159352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165510,7 +159378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165537,7 +159404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165564,7 +159430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165591,7 +159456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165618,7 +159482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165645,7 +159508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165672,7 +159534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165699,7 +159560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165726,7 +159586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165753,7 +159612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165780,7 +159638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165807,7 +159664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165834,7 +159690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165861,7 +159716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165888,7 +159742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165915,7 +159768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165942,7 +159794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165969,7 +159820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -165996,7 +159846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -166023,7 +159872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -166050,7 +159898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -166077,7 +159924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -166104,7 +159950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.683Z", @@ -166131,7 +159976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166158,7 +160002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166185,7 +160028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166212,7 +160054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166239,7 +160080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166266,7 +160106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166293,7 +160132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166320,7 +160158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166347,7 +160184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166374,7 +160210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166401,7 +160236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166428,7 +160262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166455,7 +160288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166482,7 +160314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166509,7 +160340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166536,7 +160366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166563,7 +160392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166590,7 +160418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166617,7 +160444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166644,7 +160470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166671,7 +160496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166698,7 +160522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166725,7 +160548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166752,7 +160574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166779,7 +160600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166806,7 +160626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166833,7 +160652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166860,7 +160678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166887,7 +160704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166914,7 +160730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166941,7 +160756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166968,7 +160782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -166995,7 +160808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -167022,7 +160834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -167049,7 +160860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -167076,7 +160886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -167103,7 +160912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -167130,7 +160938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -167157,7 +160964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -167184,7 +160990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.684Z", @@ -167211,7 +161016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167238,7 +161042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167265,7 +161068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167292,7 +161094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167319,7 +161120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167346,7 +161146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167373,7 +161172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167400,7 +161198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167427,7 +161224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167454,7 +161250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167481,7 +161276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167508,7 +161302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167535,7 +161328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167562,7 +161354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167589,7 +161380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167616,7 +161406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167643,7 +161432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167670,7 +161458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167697,7 +161484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167724,7 +161510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167751,7 +161536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167778,7 +161562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167805,7 +161588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167832,7 +161614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167859,7 +161640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167886,7 +161666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167913,7 +161692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167940,7 +161718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167967,7 +161744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -167994,7 +161770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -168021,7 +161796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:09.685Z", @@ -168046,7 +161820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.760Z", @@ -168073,7 +161846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.795Z", @@ -168100,7 +161872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.795Z", @@ -168127,7 +161898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.795Z", @@ -168154,7 +161924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168181,7 +161950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168208,7 +161976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168235,7 +162002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168262,7 +162028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168289,7 +162054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168316,7 +162080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168343,7 +162106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168370,7 +162132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168397,7 +162158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168424,7 +162184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168451,7 +162210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168478,7 +162236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168505,7 +162262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168532,7 +162288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168559,7 +162314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168586,7 +162340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168613,7 +162366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168640,7 +162392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168667,7 +162418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168694,7 +162444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168721,7 +162470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168748,7 +162496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168775,7 +162522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168802,7 +162548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168829,7 +162574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168856,7 +162600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168883,7 +162626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168910,7 +162652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168937,7 +162678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168964,7 +162704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -168991,7 +162730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.796Z", @@ -169018,7 +162756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169045,7 +162782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169072,7 +162808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169099,7 +162834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169126,7 +162860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169153,7 +162886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169180,7 +162912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169207,7 +162938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169234,7 +162964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169261,7 +162990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169288,7 +163016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169315,7 +163042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169342,7 +163068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169369,7 +163094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169396,7 +163120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169423,7 +163146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169450,7 +163172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169477,7 +163198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169504,7 +163224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169531,7 +163250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169558,7 +163276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169585,7 +163302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169612,7 +163328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169639,7 +163354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169666,7 +163380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169693,7 +163406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169720,7 +163432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169747,7 +163458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.797Z", @@ -169774,7 +163484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -169801,7 +163510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -169828,7 +163536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -169855,7 +163562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -169882,7 +163588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -169909,7 +163614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -169936,7 +163640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -169963,7 +163666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -169990,7 +163692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170017,7 +163718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170044,7 +163744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170071,7 +163770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170098,7 +163796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170125,7 +163822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170152,7 +163848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170179,7 +163874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170206,7 +163900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170233,7 +163926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170260,7 +163952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170287,7 +163978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170314,7 +164004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170341,7 +164030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170368,7 +164056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170395,7 +164082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170422,7 +164108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170449,7 +164134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170476,7 +164160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170503,7 +164186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170530,7 +164212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170557,7 +164238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170584,7 +164264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170611,7 +164290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170638,7 +164316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170665,7 +164342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170692,7 +164368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170719,7 +164394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170746,7 +164420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170773,7 +164446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170800,7 +164472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170827,7 +164498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.798Z", @@ -170854,7 +164524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.799Z", @@ -170881,7 +164550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:13.799Z", @@ -170906,7 +164574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.343Z", @@ -170933,7 +164600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.373Z", @@ -170960,7 +164626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.373Z", @@ -170987,7 +164652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.373Z", @@ -171014,7 +164678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.373Z", @@ -171041,7 +164704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.373Z", @@ -171068,7 +164730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.373Z", @@ -171095,7 +164756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.373Z", @@ -171122,7 +164782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.373Z", @@ -171149,7 +164808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.373Z", @@ -171176,7 +164834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.373Z", @@ -171203,7 +164860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.373Z", @@ -171230,7 +164886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.373Z", @@ -171257,7 +164912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.373Z", @@ -171284,7 +164938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.373Z", @@ -171311,7 +164964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171338,7 +164990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171365,7 +165016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171392,7 +165042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171419,7 +165068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171446,7 +165094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171473,7 +165120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171500,7 +165146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171527,7 +165172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171554,7 +165198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171581,7 +165224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171608,7 +165250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171635,7 +165276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171662,7 +165302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171689,7 +165328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171716,7 +165354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171743,7 +165380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171770,7 +165406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171797,7 +165432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171824,7 +165458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171851,7 +165484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171878,7 +165510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171905,7 +165536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171932,7 +165562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171959,7 +165588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -171986,7 +165614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.374Z", @@ -172013,7 +165640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172040,7 +165666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172067,7 +165692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172094,7 +165718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172121,7 +165744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172148,7 +165770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172175,7 +165796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172202,7 +165822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172229,7 +165848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172256,7 +165874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172283,7 +165900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172310,7 +165926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172337,7 +165952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172364,7 +165978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172391,7 +166004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172418,7 +166030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172445,7 +166056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172472,7 +166082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172499,7 +166108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172526,7 +166134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172553,7 +166160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172580,7 +166186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172607,7 +166212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172634,7 +166238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172661,7 +166264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172688,7 +166290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172715,7 +166316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172742,7 +166342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172769,7 +166368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172796,7 +166394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172823,7 +166420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172850,7 +166446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172877,7 +166472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172904,7 +166498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172931,7 +166524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172958,7 +166550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -172985,7 +166576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -173012,7 +166602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -173039,7 +166628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -173066,7 +166654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.375Z", @@ -173093,7 +166680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173120,7 +166706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173147,7 +166732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173174,7 +166758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173201,7 +166784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173228,7 +166810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173255,7 +166836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173282,7 +166862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173309,7 +166888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173336,7 +166914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173363,7 +166940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173390,7 +166966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173417,7 +166992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173444,7 +167018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173471,7 +167044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173498,7 +167070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173525,7 +167096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173552,7 +167122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173579,7 +167148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173606,7 +167174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173633,7 +167200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173660,7 +167226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173687,7 +167252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173714,7 +167278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173741,7 +167304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:23:18.376Z", @@ -173766,7 +167328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.151Z", @@ -173793,7 +167354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.239Z", @@ -173820,7 +167380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.239Z", @@ -173847,7 +167406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.239Z", @@ -173874,7 +167432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.239Z", @@ -173901,7 +167458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.239Z", @@ -173928,7 +167484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.239Z", @@ -173955,7 +167510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.239Z", @@ -173982,7 +167536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.240Z", @@ -174009,7 +167562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.240Z", @@ -174036,7 +167588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.240Z", @@ -174063,7 +167614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.240Z", @@ -174090,7 +167640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.240Z", @@ -174117,7 +167666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.240Z", @@ -174144,7 +167692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.240Z", @@ -174171,7 +167718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.240Z", @@ -174198,7 +167744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.240Z", @@ -174225,7 +167770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.240Z", @@ -174252,7 +167796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.241Z", @@ -174279,7 +167822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.241Z", @@ -174306,7 +167848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.241Z", @@ -174333,7 +167874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.241Z", @@ -174360,7 +167900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.241Z", @@ -174387,7 +167926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.241Z", @@ -174414,7 +167952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.241Z", @@ -174441,7 +167978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.241Z", @@ -174468,7 +168004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.241Z", @@ -174495,7 +168030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.241Z", @@ -174522,7 +168056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.241Z", @@ -174549,7 +168082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.241Z", @@ -174576,7 +168108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.241Z", @@ -174603,7 +168134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.241Z", @@ -174630,7 +168160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.241Z", @@ -174657,7 +168186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.242Z", @@ -174684,7 +168212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.242Z", @@ -174711,7 +168238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.242Z", @@ -174738,7 +168264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.242Z", @@ -174765,7 +168290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.242Z", @@ -174792,7 +168316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.242Z", @@ -174819,7 +168342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.242Z", @@ -174846,7 +168368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.243Z", @@ -174873,7 +168394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.243Z", @@ -174900,7 +168420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.243Z", @@ -174927,7 +168446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.243Z", @@ -174954,7 +168472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.244Z", @@ -174981,7 +168498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.244Z", @@ -175008,7 +168524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.244Z", @@ -175035,7 +168550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.244Z", @@ -175062,7 +168576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.244Z", @@ -175089,7 +168602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.244Z", @@ -175116,7 +168628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.244Z", @@ -175143,7 +168654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.245Z", @@ -175170,7 +168680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.245Z", @@ -175197,7 +168706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.245Z", @@ -175224,7 +168732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.245Z", @@ -175251,7 +168758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.246Z", @@ -175278,7 +168784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.246Z", @@ -175305,7 +168810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.246Z", @@ -175332,7 +168836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.246Z", @@ -175359,7 +168862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.246Z", @@ -175386,7 +168888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.246Z", @@ -175413,7 +168914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.246Z", @@ -175440,7 +168940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.246Z", @@ -175467,7 +168966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.246Z", @@ -175494,7 +168992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.246Z", @@ -175521,7 +169018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.246Z", @@ -175548,7 +169044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.247Z", @@ -175575,7 +169070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.247Z", @@ -175602,7 +169096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.247Z", @@ -175629,7 +169122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.247Z", @@ -175656,7 +169148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.247Z", @@ -175683,7 +169174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.247Z", @@ -175710,7 +169200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.247Z", @@ -175737,7 +169226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.247Z", @@ -175764,7 +169252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.247Z", @@ -175791,7 +169278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.247Z", @@ -175818,7 +169304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.247Z", @@ -175845,7 +169330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.247Z", @@ -175872,7 +169356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.247Z", @@ -175899,7 +169382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.247Z", @@ -175926,7 +169408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.247Z", @@ -175953,7 +169434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.247Z", @@ -175980,7 +169460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.247Z", @@ -176007,7 +169486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.248Z", @@ -176034,7 +169512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.248Z", @@ -176061,7 +169538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.248Z", @@ -176088,7 +169564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.248Z", @@ -176115,7 +169590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.248Z", @@ -176142,7 +169616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.248Z", @@ -176169,7 +169642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.248Z", @@ -176196,7 +169668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.248Z", @@ -176223,7 +169694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.248Z", @@ -176250,7 +169720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.248Z", @@ -176277,7 +169746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.248Z", @@ -176304,7 +169772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.248Z", @@ -176331,7 +169798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.248Z", @@ -176358,7 +169824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.248Z", @@ -176385,7 +169850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.248Z", @@ -176412,7 +169876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.248Z", @@ -176439,7 +169902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.248Z", @@ -176466,7 +169928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.248Z", @@ -176493,7 +169954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.248Z", @@ -176520,7 +169980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.248Z", @@ -176547,7 +170006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.248Z", @@ -176574,7 +170032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.249Z", @@ -176601,7 +170058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:45.249Z", @@ -176626,7 +170082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.175Z", @@ -176653,7 +170108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.219Z", @@ -176680,7 +170134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.219Z", @@ -176707,7 +170160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.219Z", @@ -176734,7 +170186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.219Z", @@ -176761,7 +170212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.219Z", @@ -176788,7 +170238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.219Z", @@ -176815,7 +170264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.219Z", @@ -176842,7 +170290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.219Z", @@ -176869,7 +170316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.219Z", @@ -176896,7 +170342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.219Z", @@ -176923,7 +170368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.219Z", @@ -176950,7 +170394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.219Z", @@ -176977,7 +170420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.219Z", @@ -177004,7 +170446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.219Z", @@ -177031,7 +170472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.219Z", @@ -177058,7 +170498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.219Z", @@ -177085,7 +170524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.219Z", @@ -177112,7 +170550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.219Z", @@ -177139,7 +170576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.219Z", @@ -177166,7 +170602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.219Z", @@ -177193,7 +170628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.219Z", @@ -177220,7 +170654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177247,7 +170680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177274,7 +170706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177301,7 +170732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177328,7 +170758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177355,7 +170784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177382,7 +170810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177409,7 +170836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177436,7 +170862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177463,7 +170888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177490,7 +170914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177517,7 +170940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177544,7 +170966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177571,7 +170992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177598,7 +171018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177625,7 +171044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177652,7 +171070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177679,7 +171096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177706,7 +171122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177733,7 +171148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177760,7 +171174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177787,7 +171200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177814,7 +171226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177841,7 +171252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177868,7 +171278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177895,7 +171304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177922,7 +171330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177949,7 +171356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -177976,7 +171382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -178003,7 +171408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -178030,7 +171434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -178057,7 +171460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -178084,7 +171486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -178111,7 +171512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -178138,7 +171538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -178165,7 +171564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.220Z", @@ -178192,7 +171590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178219,7 +171616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178246,7 +171642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178273,7 +171668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178300,7 +171694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178327,7 +171720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178354,7 +171746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178381,7 +171772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178408,7 +171798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178435,7 +171824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178462,7 +171850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178489,7 +171876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178516,7 +171902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178543,7 +171928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178570,7 +171954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178597,7 +171980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178624,7 +172006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178651,7 +172032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178678,7 +172058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178705,7 +172084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178732,7 +172110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178759,7 +172136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178786,7 +172162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178813,7 +172188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178840,7 +172214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178867,7 +172240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178894,7 +172266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178921,7 +172292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178948,7 +172318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -178975,7 +172344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -179002,7 +172370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -179029,7 +172396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -179056,7 +172422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.221Z", @@ -179083,7 +172448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.222Z", @@ -179110,7 +172474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.222Z", @@ -179137,7 +172500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.222Z", @@ -179164,7 +172526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.222Z", @@ -179191,7 +172552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.222Z", @@ -179218,7 +172578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.222Z", @@ -179245,7 +172604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.222Z", @@ -179272,7 +172630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.222Z", @@ -179299,7 +172656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.222Z", @@ -179326,7 +172682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.222Z", @@ -179353,7 +172708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.222Z", @@ -179380,7 +172734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.222Z", @@ -179407,7 +172760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.222Z", @@ -179434,7 +172786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.222Z", @@ -179461,7 +172812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:50.222Z", @@ -179486,7 +172836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.512Z", @@ -179513,7 +172862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.609Z", @@ -179540,7 +172888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.609Z", @@ -179567,7 +172914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.610Z", @@ -179594,7 +172940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.610Z", @@ -179621,7 +172966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.610Z", @@ -179648,7 +172992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.610Z", @@ -179675,7 +173018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.610Z", @@ -179702,7 +173044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.610Z", @@ -179729,7 +173070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.610Z", @@ -179756,7 +173096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.610Z", @@ -179783,7 +173122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.611Z", @@ -179810,7 +173148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.611Z", @@ -179837,7 +173174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.611Z", @@ -179864,7 +173200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.611Z", @@ -179891,7 +173226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.611Z", @@ -179918,7 +173252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.611Z", @@ -179945,7 +173278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.611Z", @@ -179972,7 +173304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.611Z", @@ -179999,7 +173330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.611Z", @@ -180026,7 +173356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.611Z", @@ -180053,7 +173382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.611Z", @@ -180080,7 +173408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.611Z", @@ -180107,7 +173434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.612Z", @@ -180134,7 +173460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.612Z", @@ -180161,7 +173486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.612Z", @@ -180188,7 +173512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.612Z", @@ -180215,7 +173538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.612Z", @@ -180242,7 +173564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.612Z", @@ -180269,7 +173590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.612Z", @@ -180296,7 +173616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.612Z", @@ -180323,7 +173642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.612Z", @@ -180350,7 +173668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.612Z", @@ -180377,7 +173694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.612Z", @@ -180404,7 +173720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.613Z", @@ -180431,7 +173746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.613Z", @@ -180458,7 +173772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.613Z", @@ -180485,7 +173798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.613Z", @@ -180512,7 +173824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.613Z", @@ -180539,7 +173850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.613Z", @@ -180566,7 +173876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.613Z", @@ -180593,7 +173902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.613Z", @@ -180620,7 +173928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.613Z", @@ -180647,7 +173954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.613Z", @@ -180674,7 +173980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.613Z", @@ -180701,7 +174006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.613Z", @@ -180728,7 +174032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.613Z", @@ -180755,7 +174058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.614Z", @@ -180782,7 +174084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.614Z", @@ -180809,7 +174110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.614Z", @@ -180836,7 +174136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.614Z", @@ -180863,7 +174162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.614Z", @@ -180890,7 +174188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.614Z", @@ -180917,7 +174214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.614Z", @@ -180944,7 +174240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.614Z", @@ -180971,7 +174266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.614Z", @@ -180998,7 +174292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.614Z", @@ -181025,7 +174318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.614Z", @@ -181052,7 +174344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.614Z", @@ -181079,7 +174370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.614Z", @@ -181106,7 +174396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.614Z", @@ -181133,7 +174422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.614Z", @@ -181160,7 +174448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.614Z", @@ -181187,7 +174474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.614Z", @@ -181214,7 +174500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.614Z", @@ -181241,7 +174526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.614Z", @@ -181268,7 +174552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.614Z", @@ -181295,7 +174578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181322,7 +174604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181349,7 +174630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181376,7 +174656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181403,7 +174682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181430,7 +174708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181457,7 +174734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181484,7 +174760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181511,7 +174786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181538,7 +174812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181565,7 +174838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181592,7 +174864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181619,7 +174890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181646,7 +174916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181673,7 +174942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181700,7 +174968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181727,7 +174994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181754,7 +175020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181781,7 +175046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181808,7 +175072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181835,7 +175098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181862,7 +175124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181889,7 +175150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181916,7 +175176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181943,7 +175202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181970,7 +175228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -181997,7 +175254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.615Z", @@ -182024,7 +175280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.616Z", @@ -182051,7 +175306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.616Z", @@ -182078,7 +175332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.616Z", @@ -182105,7 +175358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.616Z", @@ -182132,7 +175384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.616Z", @@ -182159,7 +175410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.616Z", @@ -182186,7 +175436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.616Z", @@ -182213,7 +175462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.616Z", @@ -182240,7 +175488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.616Z", @@ -182267,7 +175514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.616Z", @@ -182294,7 +175540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.616Z", @@ -182321,7 +175566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:24:55.616Z", @@ -182346,7 +175590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.017Z", @@ -182373,7 +175616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.051Z", @@ -182400,7 +175642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.051Z", @@ -182427,7 +175668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.051Z", @@ -182454,7 +175694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.051Z", @@ -182481,7 +175720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.052Z", @@ -182508,7 +175746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.052Z", @@ -182535,7 +175772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.052Z", @@ -182562,7 +175798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.052Z", @@ -182589,7 +175824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.052Z", @@ -182616,7 +175850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.052Z", @@ -182643,7 +175876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.052Z", @@ -182670,7 +175902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.052Z", @@ -182697,7 +175928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.052Z", @@ -182724,7 +175954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.052Z", @@ -182751,7 +175980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.052Z", @@ -182778,7 +176006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.052Z", @@ -182805,7 +176032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.052Z", @@ -182832,7 +176058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.052Z", @@ -182859,7 +176084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.053Z", @@ -182886,7 +176110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.053Z", @@ -182913,7 +176136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.053Z", @@ -182940,7 +176162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.053Z", @@ -182967,7 +176188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.053Z", @@ -182994,7 +176214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.053Z", @@ -183021,7 +176240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.053Z", @@ -183048,7 +176266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.054Z", @@ -183075,7 +176292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.054Z", @@ -183102,7 +176318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.054Z", @@ -183129,7 +176344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.054Z", @@ -183156,7 +176370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.054Z", @@ -183183,7 +176396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.054Z", @@ -183210,7 +176422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.054Z", @@ -183237,7 +176448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.054Z", @@ -183264,7 +176474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.054Z", @@ -183291,7 +176500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.054Z", @@ -183318,7 +176526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.054Z", @@ -183345,7 +176552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.055Z", @@ -183372,7 +176578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.055Z", @@ -183399,7 +176604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.055Z", @@ -183426,7 +176630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.055Z", @@ -183453,7 +176656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.055Z", @@ -183480,7 +176682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.055Z", @@ -183507,7 +176708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.055Z", @@ -183534,7 +176734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.055Z", @@ -183561,7 +176760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.055Z", @@ -183588,7 +176786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.055Z", @@ -183615,7 +176812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.055Z", @@ -183642,7 +176838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.055Z", @@ -183669,7 +176864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.055Z", @@ -183696,7 +176890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.055Z", @@ -183723,7 +176916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.055Z", @@ -183750,7 +176942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.055Z", @@ -183777,7 +176968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.055Z", @@ -183804,7 +176994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.055Z", @@ -183831,7 +177020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.055Z", @@ -183858,7 +177046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.055Z", @@ -183885,7 +177072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.055Z", @@ -183912,7 +177098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -183939,7 +177124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -183966,7 +177150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -183993,7 +177176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184020,7 +177202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184047,7 +177228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184074,7 +177254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184101,7 +177280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184128,7 +177306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184155,7 +177332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184182,7 +177358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184209,7 +177384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184236,7 +177410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184263,7 +177436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184290,7 +177462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184317,7 +177488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184344,7 +177514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184371,7 +177540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184398,7 +177566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184425,7 +177592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184452,7 +177618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184479,7 +177644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184506,7 +177670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184533,7 +177696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184560,7 +177722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184587,7 +177748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184614,7 +177774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184641,7 +177800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184668,7 +177826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184695,7 +177852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184722,7 +177878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184749,7 +177904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.056Z", @@ -184776,7 +177930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.057Z", @@ -184803,7 +177956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.057Z", @@ -184830,7 +177982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.057Z", @@ -184857,7 +178008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.057Z", @@ -184884,7 +178034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.057Z", @@ -184911,7 +178060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.057Z", @@ -184938,7 +178086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.057Z", @@ -184965,7 +178112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.057Z", @@ -184992,7 +178138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.057Z", @@ -185019,7 +178164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.057Z", @@ -185046,7 +178190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.057Z", @@ -185073,7 +178216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.057Z", @@ -185100,7 +178242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.057Z", @@ -185127,7 +178268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.057Z", @@ -185154,7 +178294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.057Z", @@ -185181,7 +178320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:25:00.057Z", @@ -185206,7 +178344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.640Z", @@ -185233,7 +178370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.697Z", @@ -185260,7 +178396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.697Z", @@ -185287,7 +178422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.697Z", @@ -185314,7 +178448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.697Z", @@ -185341,7 +178474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.697Z", @@ -185368,7 +178500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.697Z", @@ -185395,7 +178526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.697Z", @@ -185422,7 +178552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.697Z", @@ -185449,7 +178578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.698Z", @@ -185476,7 +178604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.698Z", @@ -185503,7 +178630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.698Z", @@ -185530,7 +178656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.698Z", @@ -185557,7 +178682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.698Z", @@ -185584,7 +178708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.698Z", @@ -185611,7 +178734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.698Z", @@ -185638,7 +178760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.698Z", @@ -185665,7 +178786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.698Z", @@ -185692,7 +178812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.698Z", @@ -185719,7 +178838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.698Z", @@ -185746,7 +178864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.698Z", @@ -185773,7 +178890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.698Z", @@ -185800,7 +178916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.698Z", @@ -185827,7 +178942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.698Z", @@ -185854,7 +178968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.698Z", @@ -185881,7 +178994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.698Z", @@ -185908,7 +179020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -185935,7 +179046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -185962,7 +179072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -185989,7 +179098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -186016,7 +179124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -186043,7 +179150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -186070,7 +179176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -186097,7 +179202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -186124,7 +179228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -186151,7 +179254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -186178,7 +179280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -186205,7 +179306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -186232,7 +179332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -186259,7 +179358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -186286,7 +179384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -186313,7 +179410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -186340,7 +179436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -186367,7 +179462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -186394,7 +179488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -186421,7 +179514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -186448,7 +179540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -186475,7 +179566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -186502,7 +179592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -186529,7 +179618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -186556,7 +179644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.699Z", @@ -186583,7 +179670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -186610,7 +179696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -186637,7 +179722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -186664,7 +179748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -186691,7 +179774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -186718,7 +179800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -186745,7 +179826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -186772,7 +179852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -186799,7 +179878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -186826,7 +179904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -186853,7 +179930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -186880,7 +179956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -186907,7 +179982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -186934,7 +180008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -186961,7 +180034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -186988,7 +180060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -187015,7 +180086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -187042,7 +180112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -187069,7 +180138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -187096,7 +180164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -187123,7 +180190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -187150,7 +180216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -187177,7 +180242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -187204,7 +180268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -187231,7 +180294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -187258,7 +180320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.700Z", @@ -187285,7 +180346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187312,7 +180372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187339,7 +180398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187366,7 +180424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187393,7 +180450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187420,7 +180476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187447,7 +180502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187474,7 +180528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187501,7 +180554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187528,7 +180580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187555,7 +180606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187582,7 +180632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187609,7 +180658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187636,7 +180684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187663,7 +180710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187690,7 +180736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187717,7 +180762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187744,7 +180788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187771,7 +180814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187798,7 +180840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187825,7 +180866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187852,7 +180892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187879,7 +180918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187906,7 +180944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187933,7 +180970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187960,7 +180996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -187987,7 +181022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.701Z", @@ -188014,7 +181048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.702Z", @@ -188041,7 +181074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:23.702Z", @@ -188066,7 +181098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.741Z", @@ -188093,7 +181124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.772Z", @@ -188120,7 +181150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.772Z", @@ -188147,7 +181176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.772Z", @@ -188174,7 +181202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.772Z", @@ -188201,7 +181228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188228,7 +181254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188255,7 +181280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188282,7 +181306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188309,7 +181332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188336,7 +181358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188363,7 +181384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188390,7 +181410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188417,7 +181436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188444,7 +181462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188471,7 +181488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188498,7 +181514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188525,7 +181540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188552,7 +181566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188579,7 +181592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188606,7 +181618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188633,7 +181644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188660,7 +181670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188687,7 +181696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188714,7 +181722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188741,7 +181748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188768,7 +181774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188795,7 +181800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188822,7 +181826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188849,7 +181852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188876,7 +181878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188903,7 +181904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188930,7 +181930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188957,7 +181956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -188984,7 +181982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -189011,7 +182008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -189038,7 +182034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -189065,7 +182060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -189092,7 +182086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -189119,7 +182112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -189146,7 +182138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -189173,7 +182164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -189200,7 +182190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -189227,7 +182216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -189254,7 +182242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -189281,7 +182268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -189308,7 +182294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -189335,7 +182320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -189362,7 +182346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.773Z", @@ -189389,7 +182372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -189416,7 +182398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -189443,7 +182424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -189470,7 +182450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -189497,7 +182476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -189524,7 +182502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -189551,7 +182528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -189578,7 +182554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -189605,7 +182580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -189632,7 +182606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -189659,7 +182632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -189686,7 +182658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -189713,7 +182684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -189740,7 +182710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -189767,7 +182736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -189794,7 +182762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -189821,7 +182788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -189848,7 +182814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -189875,7 +182840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -189902,7 +182866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -189929,7 +182892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -189956,7 +182918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -189983,7 +182944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -190010,7 +182970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -190037,7 +182996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -190064,7 +183022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -190091,7 +183048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -190118,7 +183074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -190145,7 +183100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -190172,7 +183126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -190199,7 +183152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -190226,7 +183178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -190253,7 +183204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -190280,7 +183230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -190307,7 +183256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -190334,7 +183282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -190361,7 +183308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -190388,7 +183334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -190415,7 +183360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -190442,7 +183386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -190469,7 +183412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -190496,7 +183438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.774Z", @@ -190523,7 +183464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.775Z", @@ -190550,7 +183490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.775Z", @@ -190577,7 +183516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.775Z", @@ -190604,7 +183542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.775Z", @@ -190631,7 +183568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.775Z", @@ -190658,7 +183594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.775Z", @@ -190685,7 +183620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.775Z", @@ -190712,7 +183646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.775Z", @@ -190739,7 +183672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.775Z", @@ -190766,7 +183698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.775Z", @@ -190793,7 +183724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.775Z", @@ -190820,7 +183750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.775Z", @@ -190847,7 +183776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.775Z", @@ -190874,7 +183802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.775Z", @@ -190901,7 +183828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:27.775Z", @@ -190926,7 +183852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.540Z", @@ -190953,7 +183878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.571Z", @@ -190980,7 +183904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.571Z", @@ -191007,7 +183930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.571Z", @@ -191034,7 +183956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.571Z", @@ -191061,7 +183982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.571Z", @@ -191088,7 +184008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.571Z", @@ -191115,7 +184034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.571Z", @@ -191142,7 +184060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.571Z", @@ -191169,7 +184086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.571Z", @@ -191196,7 +184112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.571Z", @@ -191223,7 +184138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.571Z", @@ -191250,7 +184164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.571Z", @@ -191277,7 +184190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.571Z", @@ -191304,7 +184216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.571Z", @@ -191331,7 +184242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191358,7 +184268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191385,7 +184294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191412,7 +184320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191439,7 +184346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191466,7 +184372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191493,7 +184398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191520,7 +184424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191547,7 +184450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191574,7 +184476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191601,7 +184502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191628,7 +184528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191655,7 +184554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191682,7 +184580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191709,7 +184606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191736,7 +184632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191763,7 +184658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191790,7 +184684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191817,7 +184710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191844,7 +184736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191871,7 +184762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191898,7 +184788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191925,7 +184814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191952,7 +184840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -191979,7 +184866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -192006,7 +184892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -192033,7 +184918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -192060,7 +184944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -192087,7 +184970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -192114,7 +184996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -192141,7 +185022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -192168,7 +185048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -192195,7 +185074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -192222,7 +185100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -192249,7 +185126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -192276,7 +185152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -192303,7 +185178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -192330,7 +185204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -192357,7 +185230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -192384,7 +185256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -192411,7 +185282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.572Z", @@ -192438,7 +185308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -192465,7 +185334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -192492,7 +185360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -192519,7 +185386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -192546,7 +185412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -192573,7 +185438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -192600,7 +185464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -192627,7 +185490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -192654,7 +185516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -192681,7 +185542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -192708,7 +185568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -192735,7 +185594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -192762,7 +185620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -192789,7 +185646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -192816,7 +185672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -192843,7 +185698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -192870,7 +185724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -192897,7 +185750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -192924,7 +185776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -192951,7 +185802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -192978,7 +185828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -193005,7 +185854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -193032,7 +185880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -193059,7 +185906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -193086,7 +185932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -193113,7 +185958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -193140,7 +185984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -193167,7 +186010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -193194,7 +186036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -193221,7 +186062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -193248,7 +186088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -193275,7 +186114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -193302,7 +186140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -193329,7 +186166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -193356,7 +186192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -193383,7 +186218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -193410,7 +186244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -193437,7 +186270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -193464,7 +186296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.573Z", @@ -193491,7 +186322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.574Z", @@ -193518,7 +186348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.574Z", @@ -193545,7 +186374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.574Z", @@ -193572,7 +186400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.574Z", @@ -193599,7 +186426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.574Z", @@ -193626,7 +186452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.574Z", @@ -193653,7 +186478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.574Z", @@ -193680,7 +186504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.574Z", @@ -193707,7 +186530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.574Z", @@ -193734,7 +186556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.574Z", @@ -193761,7 +186582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:31.574Z", @@ -193786,7 +186606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.797Z", @@ -193813,7 +186632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.842Z", @@ -193840,7 +186658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.842Z", @@ -193867,7 +186684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.842Z", @@ -193894,7 +186710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.842Z", @@ -193921,7 +186736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.842Z", @@ -193948,7 +186762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.842Z", @@ -193975,7 +186788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.842Z", @@ -194002,7 +186814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.842Z", @@ -194029,7 +186840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.842Z", @@ -194056,7 +186866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.842Z", @@ -194083,7 +186892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.842Z", @@ -194110,7 +186918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.842Z", @@ -194137,7 +186944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.842Z", @@ -194164,7 +186970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.842Z", @@ -194191,7 +186996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.842Z", @@ -194218,7 +187022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.842Z", @@ -194245,7 +187048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194272,7 +187074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194299,7 +187100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194326,7 +187126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194353,7 +187152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194380,7 +187178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194407,7 +187204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194434,7 +187230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194461,7 +187256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194488,7 +187282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194515,7 +187308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194542,7 +187334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194569,7 +187360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194596,7 +187386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194623,7 +187412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194650,7 +187438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194677,7 +187464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194704,7 +187490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194731,7 +187516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194758,7 +187542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194785,7 +187568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194812,7 +187594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194839,7 +187620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194866,7 +187646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194893,7 +187672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194920,7 +187698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194947,7 +187724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -194974,7 +187750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -195001,7 +187776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -195028,7 +187802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -195055,7 +187828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -195082,7 +187854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -195109,7 +187880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -195136,7 +187906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -195163,7 +187932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.843Z", @@ -195190,7 +187958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195217,7 +187984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195244,7 +188010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195271,7 +188036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195298,7 +188062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195325,7 +188088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195352,7 +188114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195379,7 +188140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195406,7 +188166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195433,7 +188192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195460,7 +188218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195487,7 +188244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195514,7 +188270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195541,7 +188296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195568,7 +188322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195595,7 +188348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195622,7 +188374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195649,7 +188400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195676,7 +188426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195703,7 +188452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195730,7 +188478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195757,7 +188504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195784,7 +188530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195811,7 +188556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195838,7 +188582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195865,7 +188608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195892,7 +188634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195919,7 +188660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195946,7 +188686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -195973,7 +188712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -196000,7 +188738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -196027,7 +188764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -196054,7 +188790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -196081,7 +188816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -196108,7 +188842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -196135,7 +188868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -196162,7 +188894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -196189,7 +188920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.844Z", @@ -196216,7 +188946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.845Z", @@ -196243,7 +188972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.845Z", @@ -196270,7 +188998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.845Z", @@ -196297,7 +189024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.845Z", @@ -196324,7 +189050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.845Z", @@ -196351,7 +189076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.845Z", @@ -196378,7 +189102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.845Z", @@ -196405,7 +189128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.845Z", @@ -196432,7 +189154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.845Z", @@ -196459,7 +189180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.845Z", @@ -196486,7 +189206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.845Z", @@ -196513,7 +189232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.845Z", @@ -196540,7 +189258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.845Z", @@ -196567,7 +189284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.845Z", @@ -196594,7 +189310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.845Z", @@ -196621,7 +189336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:26:35.845Z", @@ -196646,7 +189360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.777Z", @@ -196673,7 +189386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.866Z", @@ -196700,7 +189412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.866Z", @@ -196727,7 +189438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.867Z", @@ -196754,7 +189464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.867Z", @@ -196781,7 +189490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.867Z", @@ -196808,7 +189516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.867Z", @@ -196835,7 +189542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.867Z", @@ -196862,7 +189568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.867Z", @@ -196889,7 +189594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.867Z", @@ -196916,7 +189620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.867Z", @@ -196943,7 +189646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.867Z", @@ -196970,7 +189672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.867Z", @@ -196997,7 +189698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.867Z", @@ -197024,7 +189724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.867Z", @@ -197051,7 +189750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.867Z", @@ -197078,7 +189776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.867Z", @@ -197105,7 +189802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.867Z", @@ -197132,7 +189828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.867Z", @@ -197159,7 +189854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.867Z", @@ -197186,7 +189880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.867Z", @@ -197213,7 +189906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.868Z", @@ -197240,7 +189932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.868Z", @@ -197267,7 +189958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.868Z", @@ -197294,7 +189984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.868Z", @@ -197321,7 +190010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.868Z", @@ -197348,7 +190036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.868Z", @@ -197375,7 +190062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.869Z", @@ -197402,7 +190088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.869Z", @@ -197429,7 +190114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.869Z", @@ -197456,7 +190140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.869Z", @@ -197483,7 +190166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.869Z", @@ -197510,7 +190192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.869Z", @@ -197537,7 +190218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.869Z", @@ -197564,7 +190244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.869Z", @@ -197591,7 +190270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.869Z", @@ -197618,7 +190296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.869Z", @@ -197645,7 +190322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.870Z", @@ -197672,7 +190348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.870Z", @@ -197699,7 +190374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.870Z", @@ -197726,7 +190400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.870Z", @@ -197753,7 +190426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.870Z", @@ -197780,7 +190452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.870Z", @@ -197807,7 +190478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.870Z", @@ -197834,7 +190504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.870Z", @@ -197861,7 +190530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.870Z", @@ -197888,7 +190556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.871Z", @@ -197915,7 +190582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.871Z", @@ -197942,7 +190608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.871Z", @@ -197969,7 +190634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.871Z", @@ -197996,7 +190660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.871Z", @@ -198023,7 +190686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.871Z", @@ -198050,7 +190712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.871Z", @@ -198077,7 +190738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.871Z", @@ -198104,7 +190764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.871Z", @@ -198131,7 +190790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.872Z", @@ -198158,7 +190816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.872Z", @@ -198185,7 +190842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.872Z", @@ -198212,7 +190868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.872Z", @@ -198239,7 +190894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.872Z", @@ -198266,7 +190920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.872Z", @@ -198293,7 +190946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.872Z", @@ -198320,7 +190972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.872Z", @@ -198347,7 +190998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.872Z", @@ -198374,7 +191024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.872Z", @@ -198401,7 +191050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.872Z", @@ -198428,7 +191076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.872Z", @@ -198455,7 +191102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.872Z", @@ -198482,7 +191128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.872Z", @@ -198509,7 +191154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.872Z", @@ -198536,7 +191180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.872Z", @@ -198563,7 +191206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.872Z", @@ -198590,7 +191232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.872Z", @@ -198617,7 +191258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -198644,7 +191284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -198671,7 +191310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -198698,7 +191336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -198725,7 +191362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -198752,7 +191388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -198779,7 +191414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -198806,7 +191440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -198833,7 +191466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -198860,7 +191492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -198887,7 +191518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -198914,7 +191544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -198941,7 +191570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -198968,7 +191596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -198995,7 +191622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -199022,7 +191648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -199049,7 +191674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -199076,7 +191700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -199103,7 +191726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -199130,7 +191752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -199157,7 +191778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -199184,7 +191804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -199211,7 +191830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -199238,7 +191856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -199265,7 +191882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -199292,7 +191908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -199319,7 +191934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -199346,7 +191960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -199373,7 +191986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -199400,7 +192012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -199427,7 +192038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.873Z", @@ -199454,7 +192064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.874Z", @@ -199481,7 +192090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:49.874Z", @@ -199506,7 +192114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.112Z", @@ -199533,7 +192140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -199560,7 +192166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -199587,7 +192192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -199614,7 +192218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -199641,7 +192244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -199668,7 +192270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -199695,7 +192296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -199722,7 +192322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -199749,7 +192348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -199776,7 +192374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -199803,7 +192400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -199830,7 +192426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -199857,7 +192452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -199884,7 +192478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -199911,7 +192504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -199938,7 +192530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -199965,7 +192556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -199992,7 +192582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200019,7 +192608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200046,7 +192634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200073,7 +192660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200100,7 +192686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200127,7 +192712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200154,7 +192738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200181,7 +192764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200208,7 +192790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200235,7 +192816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200262,7 +192842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200289,7 +192868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200316,7 +192894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200343,7 +192920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200370,7 +192946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200397,7 +192972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200424,7 +192998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200451,7 +193024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200478,7 +193050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200505,7 +193076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200532,7 +193102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200559,7 +193128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200586,7 +193154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200613,7 +193180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200640,7 +193206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200667,7 +193232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.143Z", @@ -200694,7 +193258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -200721,7 +193284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -200748,7 +193310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -200775,7 +193336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -200802,7 +193362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -200829,7 +193388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -200856,7 +193414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -200883,7 +193440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -200910,7 +193466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -200937,7 +193492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -200964,7 +193518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -200991,7 +193544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201018,7 +193570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201045,7 +193596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201072,7 +193622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201099,7 +193648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201126,7 +193674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201153,7 +193700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201180,7 +193726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201207,7 +193752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201234,7 +193778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201261,7 +193804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201288,7 +193830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201315,7 +193856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201342,7 +193882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201369,7 +193908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201396,7 +193934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201423,7 +193960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201450,7 +193986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201477,7 +194012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201504,7 +194038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201531,7 +194064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201558,7 +194090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201585,7 +194116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201612,7 +194142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201639,7 +194168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201666,7 +194194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201693,7 +194220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201720,7 +194246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201747,7 +194272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201774,7 +194298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201801,7 +194324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201828,7 +194350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201855,7 +194376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201882,7 +194402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201909,7 +194428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201936,7 +194454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201963,7 +194480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.144Z", @@ -201990,7 +194506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.145Z", @@ -202017,7 +194532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.145Z", @@ -202044,7 +194558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.145Z", @@ -202071,7 +194584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.145Z", @@ -202098,7 +194610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.145Z", @@ -202125,7 +194636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.145Z", @@ -202152,7 +194662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.145Z", @@ -202179,7 +194688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.145Z", @@ -202206,7 +194714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.145Z", @@ -202233,7 +194740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.145Z", @@ -202260,7 +194766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.145Z", @@ -202287,7 +194792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.145Z", @@ -202314,7 +194818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.145Z", @@ -202341,7 +194844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:53.145Z", @@ -202366,7 +194868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.647Z", @@ -202393,7 +194894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.676Z", @@ -202420,7 +194920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.676Z", @@ -202447,7 +194946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.676Z", @@ -202474,7 +194972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.676Z", @@ -202501,7 +194998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.676Z", @@ -202528,7 +195024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.676Z", @@ -202555,7 +195050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.676Z", @@ -202582,7 +195076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.676Z", @@ -202609,7 +195102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.676Z", @@ -202636,7 +195128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.676Z", @@ -202663,7 +195154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.676Z", @@ -202690,7 +195180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.676Z", @@ -202717,7 +195206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.676Z", @@ -202744,7 +195232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -202771,7 +195258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -202798,7 +195284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -202825,7 +195310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -202852,7 +195336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -202879,7 +195362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -202906,7 +195388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -202933,7 +195414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -202960,7 +195440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -202987,7 +195466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203014,7 +195492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203041,7 +195518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203068,7 +195544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203095,7 +195570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203122,7 +195596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203149,7 +195622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203176,7 +195648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203203,7 +195674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203230,7 +195700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203257,7 +195726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203284,7 +195752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203311,7 +195778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203338,7 +195804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203365,7 +195830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203392,7 +195856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203419,7 +195882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203446,7 +195908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203473,7 +195934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203500,7 +195960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203527,7 +195986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203554,7 +196012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203581,7 +196038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203608,7 +196064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203635,7 +196090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203662,7 +196116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203689,7 +196142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203716,7 +196168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203743,7 +196194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203770,7 +196220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203797,7 +196246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.677Z", @@ -203824,7 +196272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -203851,7 +196298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -203878,7 +196324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -203905,7 +196350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -203932,7 +196376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -203959,7 +196402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -203986,7 +196428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204013,7 +196454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204040,7 +196480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204067,7 +196506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204094,7 +196532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204121,7 +196558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204148,7 +196584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204175,7 +196610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204202,7 +196636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204229,7 +196662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204256,7 +196688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204283,7 +196714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204310,7 +196740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204337,7 +196766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204364,7 +196792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204391,7 +196818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204418,7 +196844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204445,7 +196870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204472,7 +196896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204499,7 +196922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204526,7 +196948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204553,7 +196974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204580,7 +197000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204607,7 +197026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204634,7 +197052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204661,7 +197078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204688,7 +197104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204715,7 +197130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204742,7 +197156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204769,7 +197182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204796,7 +197208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.678Z", @@ -204823,7 +197234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.679Z", @@ -204850,7 +197260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.679Z", @@ -204877,7 +197286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.679Z", @@ -204904,7 +197312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.679Z", @@ -204931,7 +197338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.679Z", @@ -204958,7 +197364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.679Z", @@ -204985,7 +197390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.679Z", @@ -205012,7 +197416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.679Z", @@ -205039,7 +197442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.679Z", @@ -205066,7 +197468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.679Z", @@ -205093,7 +197494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.679Z", @@ -205120,7 +197520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.679Z", @@ -205147,7 +197546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.679Z", @@ -205174,7 +197572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.679Z", @@ -205201,7 +197598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:27:56.679Z", @@ -205226,7 +197622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.141Z", @@ -205253,7 +197648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.171Z", @@ -205280,7 +197674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.171Z", @@ -205307,7 +197700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.171Z", @@ -205334,7 +197726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.171Z", @@ -205361,7 +197752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.171Z", @@ -205388,7 +197778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.171Z", @@ -205415,7 +197804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.171Z", @@ -205442,7 +197830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.171Z", @@ -205469,7 +197856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.171Z", @@ -205496,7 +197882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.171Z", @@ -205523,7 +197908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.171Z", @@ -205550,7 +197934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.171Z", @@ -205577,7 +197960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -205604,7 +197986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -205631,7 +198012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -205658,7 +198038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -205685,7 +198064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -205712,7 +198090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -205739,7 +198116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -205766,7 +198142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -205793,7 +198168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -205820,7 +198194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -205847,7 +198220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -205874,7 +198246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -205901,7 +198272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -205928,7 +198298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -205955,7 +198324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -205982,7 +198350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -206009,7 +198376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -206036,7 +198402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -206063,7 +198428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -206090,7 +198454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -206117,7 +198480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -206144,7 +198506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -206171,7 +198532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -206198,7 +198558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -206225,7 +198584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -206252,7 +198610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -206279,7 +198636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -206306,7 +198662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -206333,7 +198688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -206360,7 +198714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -206387,7 +198740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -206414,7 +198766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -206441,7 +198792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -206468,7 +198818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -206495,7 +198844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -206522,7 +198870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -206549,7 +198896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -206576,7 +198922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.172Z", @@ -206603,7 +198948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -206630,7 +198974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -206657,7 +199000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -206684,7 +199026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -206711,7 +199052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -206738,7 +199078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -206765,7 +199104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -206792,7 +199130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -206819,7 +199156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -206846,7 +199182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -206873,7 +199208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -206900,7 +199234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -206927,7 +199260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -206954,7 +199286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -206981,7 +199312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207008,7 +199338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207035,7 +199364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207062,7 +199390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207089,7 +199416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207116,7 +199442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207143,7 +199468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207170,7 +199494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207197,7 +199520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207224,7 +199546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207251,7 +199572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207278,7 +199598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207305,7 +199624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207332,7 +199650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207359,7 +199676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207386,7 +199702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207413,7 +199728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207440,7 +199754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207467,7 +199780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207494,7 +199806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207521,7 +199832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207548,7 +199858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207575,7 +199884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207602,7 +199910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.173Z", @@ -207629,7 +199936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.174Z", @@ -207656,7 +199962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.174Z", @@ -207683,7 +199988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.174Z", @@ -207710,7 +200014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.174Z", @@ -207737,7 +200040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.174Z", @@ -207764,7 +200066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.174Z", @@ -207791,7 +200092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.174Z", @@ -207818,7 +200118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.174Z", @@ -207845,7 +200144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.174Z", @@ -207872,7 +200170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.174Z", @@ -207899,7 +200196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.174Z", @@ -207926,7 +200222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.174Z", @@ -207953,7 +200248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.174Z", @@ -207980,7 +200274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.174Z", @@ -208007,7 +200300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.174Z", @@ -208034,7 +200326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.174Z", @@ -208061,7 +200352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:28:01.174Z", @@ -208086,7 +200376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:35.951Z", @@ -208113,7 +200402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.029Z", @@ -208140,7 +200428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.029Z", @@ -208167,7 +200454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.029Z", @@ -208194,7 +200480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.029Z", @@ -208221,7 +200506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.029Z", @@ -208248,7 +200532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.029Z", @@ -208275,7 +200558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.029Z", @@ -208302,7 +200584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.030Z", @@ -208329,7 +200610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.030Z", @@ -208356,7 +200636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.030Z", @@ -208383,7 +200662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.030Z", @@ -208410,7 +200688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.030Z", @@ -208437,7 +200714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.030Z", @@ -208464,7 +200740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.030Z", @@ -208491,7 +200766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.030Z", @@ -208518,7 +200792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.030Z", @@ -208545,7 +200818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.030Z", @@ -208572,7 +200844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.030Z", @@ -208599,7 +200870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.030Z", @@ -208626,7 +200896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.030Z", @@ -208653,7 +200922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.030Z", @@ -208680,7 +200948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.030Z", @@ -208707,7 +200974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.031Z", @@ -208734,7 +201000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.031Z", @@ -208761,7 +201026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.031Z", @@ -208788,7 +201052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.031Z", @@ -208815,7 +201078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.031Z", @@ -208842,7 +201104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.031Z", @@ -208869,7 +201130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.031Z", @@ -208896,7 +201156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.031Z", @@ -208923,7 +201182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.031Z", @@ -208950,7 +201208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.031Z", @@ -208977,7 +201234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.031Z", @@ -209004,7 +201260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.031Z", @@ -209031,7 +201286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.031Z", @@ -209058,7 +201312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.031Z", @@ -209085,7 +201338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.031Z", @@ -209112,7 +201364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.032Z", @@ -209139,7 +201390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.032Z", @@ -209166,7 +201416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.032Z", @@ -209193,7 +201442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.032Z", @@ -209220,7 +201468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.032Z", @@ -209247,7 +201494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.032Z", @@ -209274,7 +201520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.032Z", @@ -209301,7 +201546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.032Z", @@ -209328,7 +201572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.032Z", @@ -209355,7 +201598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.032Z", @@ -209382,7 +201624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.032Z", @@ -209409,7 +201650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.032Z", @@ -209436,7 +201676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.033Z", @@ -209463,7 +201702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.033Z", @@ -209490,7 +201728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.033Z", @@ -209517,7 +201754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.033Z", @@ -209544,7 +201780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.033Z", @@ -209571,7 +201806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.033Z", @@ -209598,7 +201832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.033Z", @@ -209625,7 +201858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.033Z", @@ -209652,7 +201884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.033Z", @@ -209679,7 +201910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.033Z", @@ -209706,7 +201936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.033Z", @@ -209733,7 +201962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.033Z", @@ -209760,7 +201988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.034Z", @@ -209787,7 +202014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.034Z", @@ -209814,7 +202040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.034Z", @@ -209841,7 +202066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.034Z", @@ -209868,7 +202092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.034Z", @@ -209895,7 +202118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.034Z", @@ -209922,7 +202144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.034Z", @@ -209949,7 +202170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.034Z", @@ -209976,7 +202196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.034Z", @@ -210003,7 +202222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.034Z", @@ -210030,7 +202248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.034Z", @@ -210057,7 +202274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.034Z", @@ -210084,7 +202300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.034Z", @@ -210111,7 +202326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.034Z", @@ -210138,7 +202352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.035Z", @@ -210165,7 +202378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.035Z", @@ -210192,7 +202404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.035Z", @@ -210219,7 +202430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.035Z", @@ -210246,7 +202456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.035Z", @@ -210273,7 +202482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.035Z", @@ -210300,7 +202508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.035Z", @@ -210327,7 +202534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.035Z", @@ -210354,7 +202560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.035Z", @@ -210381,7 +202586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.035Z", @@ -210408,7 +202612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.036Z", @@ -210435,7 +202638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.036Z", @@ -210462,7 +202664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.036Z", @@ -210489,7 +202690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.036Z", @@ -210516,7 +202716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.036Z", @@ -210543,7 +202742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.036Z", @@ -210570,7 +202768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.036Z", @@ -210597,7 +202794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.036Z", @@ -210624,7 +202820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.036Z", @@ -210651,7 +202846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.037Z", @@ -210678,7 +202872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.037Z", @@ -210705,7 +202898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.037Z", @@ -210732,7 +202924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.037Z", @@ -210759,7 +202950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.037Z", @@ -210786,7 +202976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.037Z", @@ -210813,7 +203002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.037Z", @@ -210840,7 +203028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.037Z", @@ -210867,7 +203054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.037Z", @@ -210894,7 +203080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:36.037Z", @@ -210919,7 +203104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.845Z", @@ -210946,7 +203130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.925Z", @@ -210973,7 +203156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.925Z", @@ -211000,7 +203182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.925Z", @@ -211027,7 +203208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.925Z", @@ -211054,7 +203234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.925Z", @@ -211081,7 +203260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.925Z", @@ -211108,7 +203286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.925Z", @@ -211135,7 +203312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.925Z", @@ -211162,7 +203338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.925Z", @@ -211189,7 +203364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.925Z", @@ -211216,7 +203390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.925Z", @@ -211243,7 +203416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.925Z", @@ -211270,7 +203442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.925Z", @@ -211297,7 +203468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.925Z", @@ -211324,7 +203494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.925Z", @@ -211351,7 +203520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.925Z", @@ -211378,7 +203546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.925Z", @@ -211405,7 +203572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.925Z", @@ -211432,7 +203598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.925Z", @@ -211459,7 +203624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.925Z", @@ -211486,7 +203650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.925Z", @@ -211513,7 +203676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.925Z", @@ -211540,7 +203702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -211567,7 +203728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -211594,7 +203754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -211621,7 +203780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -211648,7 +203806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -211675,7 +203832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -211702,7 +203858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -211729,7 +203884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -211756,7 +203910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -211783,7 +203936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -211810,7 +203962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -211837,7 +203988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -211864,7 +204014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -211891,7 +204040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -211918,7 +204066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -211945,7 +204092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -211972,7 +204118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -211999,7 +204144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -212026,7 +204170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -212053,7 +204196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -212080,7 +204222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -212107,7 +204248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -212134,7 +204274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -212161,7 +204300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -212188,7 +204326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -212215,7 +204352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -212242,7 +204378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -212269,7 +204404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -212296,7 +204430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.926Z", @@ -212323,7 +204456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212350,7 +204482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212377,7 +204508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212404,7 +204534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212431,7 +204560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212458,7 +204586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212485,7 +204612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212512,7 +204638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212539,7 +204664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212566,7 +204690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212593,7 +204716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212620,7 +204742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212647,7 +204768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212674,7 +204794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212701,7 +204820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212728,7 +204846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212755,7 +204872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212782,7 +204898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212809,7 +204924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212836,7 +204950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212863,7 +204976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212890,7 +205002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212917,7 +205028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212944,7 +205054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212971,7 +205080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -212998,7 +205106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -213025,7 +205132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -213052,7 +205158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -213079,7 +205184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -213106,7 +205210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -213133,7 +205236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -213160,7 +205262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -213187,7 +205288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.927Z", @@ -213214,7 +205314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.928Z", @@ -213241,7 +205340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.928Z", @@ -213268,7 +205366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.928Z", @@ -213295,7 +205392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.928Z", @@ -213322,7 +205418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.928Z", @@ -213349,7 +205444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.928Z", @@ -213376,7 +205470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.928Z", @@ -213403,7 +205496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.928Z", @@ -213430,7 +205522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.928Z", @@ -213457,7 +205548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.928Z", @@ -213484,7 +205574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.928Z", @@ -213511,7 +205600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.928Z", @@ -213538,7 +205626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.928Z", @@ -213565,7 +205652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.928Z", @@ -213592,7 +205678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.928Z", @@ -213619,7 +205704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.928Z", @@ -213646,7 +205730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.928Z", @@ -213673,7 +205756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.928Z", @@ -213700,7 +205782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.928Z", @@ -213727,7 +205808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:39.928Z", @@ -213752,7 +205832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.739Z", @@ -213779,7 +205858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.796Z", @@ -213806,7 +205884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.796Z", @@ -213833,7 +205910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.797Z", @@ -213860,7 +205936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.797Z", @@ -213887,7 +205962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.797Z", @@ -213914,7 +205988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.797Z", @@ -213941,7 +206014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.797Z", @@ -213968,7 +206040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.797Z", @@ -213995,7 +206066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.797Z", @@ -214022,7 +206092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.797Z", @@ -214049,7 +206118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.797Z", @@ -214076,7 +206144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.797Z", @@ -214103,7 +206170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.798Z", @@ -214130,7 +206196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.798Z", @@ -214157,7 +206222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.798Z", @@ -214184,7 +206248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.798Z", @@ -214211,7 +206274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.798Z", @@ -214238,7 +206300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.798Z", @@ -214265,7 +206326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.798Z", @@ -214292,7 +206352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.798Z", @@ -214319,7 +206378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.798Z", @@ -214346,7 +206404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.798Z", @@ -214373,7 +206430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.798Z", @@ -214400,7 +206456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.799Z", @@ -214427,7 +206482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.799Z", @@ -214454,7 +206508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.799Z", @@ -214481,7 +206534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.799Z", @@ -214508,7 +206560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.799Z", @@ -214535,7 +206586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.799Z", @@ -214562,7 +206612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.799Z", @@ -214589,7 +206638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.799Z", @@ -214616,7 +206664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.799Z", @@ -214643,7 +206690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.799Z", @@ -214670,7 +206716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.799Z", @@ -214697,7 +206742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.799Z", @@ -214724,7 +206768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.799Z", @@ -214751,7 +206794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.800Z", @@ -214778,7 +206820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.800Z", @@ -214805,7 +206846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.800Z", @@ -214832,7 +206872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.800Z", @@ -214859,7 +206898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.800Z", @@ -214886,7 +206924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.800Z", @@ -214913,7 +206950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.800Z", @@ -214940,7 +206976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.800Z", @@ -214967,7 +207002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.800Z", @@ -214994,7 +207028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.800Z", @@ -215021,7 +207054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.800Z", @@ -215048,7 +207080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.800Z", @@ -215075,7 +207106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.800Z", @@ -215102,7 +207132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.800Z", @@ -215129,7 +207158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.800Z", @@ -215156,7 +207184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.801Z", @@ -215183,7 +207210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.801Z", @@ -215210,7 +207236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.801Z", @@ -215237,7 +207262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.801Z", @@ -215264,7 +207288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.801Z", @@ -215291,7 +207314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.801Z", @@ -215318,7 +207340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.801Z", @@ -215345,7 +207366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.801Z", @@ -215372,7 +207392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.801Z", @@ -215399,7 +207418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.801Z", @@ -215426,7 +207444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.802Z", @@ -215453,7 +207470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.802Z", @@ -215480,7 +207496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.802Z", @@ -215507,7 +207522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.802Z", @@ -215534,7 +207548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.802Z", @@ -215561,7 +207574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.802Z", @@ -215588,7 +207600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.802Z", @@ -215615,7 +207626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.802Z", @@ -215642,7 +207652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.802Z", @@ -215669,7 +207678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.802Z", @@ -215696,7 +207704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.802Z", @@ -215723,7 +207730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.802Z", @@ -215750,7 +207756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.802Z", @@ -215777,7 +207782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.802Z", @@ -215804,7 +207808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.802Z", @@ -215831,7 +207834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.802Z", @@ -215858,7 +207860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.802Z", @@ -215885,7 +207886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.803Z", @@ -215912,7 +207912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.803Z", @@ -215939,7 +207938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.803Z", @@ -215966,7 +207964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.803Z", @@ -215993,7 +207990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.803Z", @@ -216020,7 +208016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.803Z", @@ -216047,7 +208042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.803Z", @@ -216074,7 +208068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.803Z", @@ -216101,7 +208094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.803Z", @@ -216128,7 +208120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.803Z", @@ -216155,7 +208146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.803Z", @@ -216182,7 +208172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.803Z", @@ -216209,7 +208198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.803Z", @@ -216236,7 +208224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.803Z", @@ -216263,7 +208250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.803Z", @@ -216290,7 +208276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.803Z", @@ -216317,7 +208302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.803Z", @@ -216344,7 +208328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.803Z", @@ -216371,7 +208354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.804Z", @@ -216398,7 +208380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.804Z", @@ -216425,7 +208406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.804Z", @@ -216452,7 +208432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.804Z", @@ -216479,7 +208458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.804Z", @@ -216506,7 +208484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.804Z", @@ -216533,7 +208510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.804Z", @@ -216560,7 +208536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:43.804Z", @@ -216585,7 +208560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.335Z", @@ -216612,7 +208586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.361Z", @@ -216639,7 +208612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.361Z", @@ -216666,7 +208638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.361Z", @@ -216693,7 +208664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.361Z", @@ -216720,7 +208690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.361Z", @@ -216747,7 +208716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.361Z", @@ -216774,7 +208742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.361Z", @@ -216801,7 +208768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.361Z", @@ -216828,7 +208794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.361Z", @@ -216855,7 +208820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.361Z", @@ -216882,7 +208846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.361Z", @@ -216909,7 +208872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.361Z", @@ -216936,7 +208898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.361Z", @@ -216963,7 +208924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.361Z", @@ -216990,7 +208950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.362Z", @@ -217017,7 +208976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.362Z", @@ -217044,7 +209002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.362Z", @@ -217071,7 +209028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.362Z", @@ -217098,7 +209054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.362Z", @@ -217125,7 +209080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.362Z", @@ -217152,7 +209106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.362Z", @@ -217179,7 +209132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.362Z", @@ -217206,7 +209158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.362Z", @@ -217233,7 +209184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.362Z", @@ -217260,7 +209210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.362Z", @@ -217287,7 +209236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.362Z", @@ -217314,7 +209262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.362Z", @@ -217341,7 +209288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.362Z", @@ -217368,7 +209314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.362Z", @@ -217395,7 +209340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.362Z", @@ -217422,7 +209366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.362Z", @@ -217449,7 +209392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.363Z", @@ -217476,7 +209418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.363Z", @@ -217503,7 +209444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.363Z", @@ -217530,7 +209470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.363Z", @@ -217557,7 +209496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.363Z", @@ -217584,7 +209522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.363Z", @@ -217611,7 +209548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.363Z", @@ -217638,7 +209574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.363Z", @@ -217665,7 +209600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.363Z", @@ -217692,7 +209626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.363Z", @@ -217719,7 +209652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.363Z", @@ -217746,7 +209678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.363Z", @@ -217773,7 +209704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.363Z", @@ -217800,7 +209730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.363Z", @@ -217827,7 +209756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.363Z", @@ -217854,7 +209782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.363Z", @@ -217881,7 +209808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.363Z", @@ -217908,7 +209834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -217935,7 +209860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -217962,7 +209886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -217989,7 +209912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218016,7 +209938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218043,7 +209964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218070,7 +209990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218097,7 +210016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218124,7 +210042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218151,7 +210068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218178,7 +210094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218205,7 +210120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218232,7 +210146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218259,7 +210172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218286,7 +210198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218313,7 +210224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218340,7 +210250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218367,7 +210276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218394,7 +210302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218421,7 +210328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218448,7 +210354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218475,7 +210380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218502,7 +210406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218529,7 +210432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218556,7 +210458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218583,7 +210484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218610,7 +210510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218637,7 +210536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218664,7 +210562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218691,7 +210588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218718,7 +210614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218745,7 +210640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.364Z", @@ -218772,7 +210666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -218799,7 +210692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -218826,7 +210718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -218853,7 +210744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -218880,7 +210770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -218907,7 +210796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -218934,7 +210822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -218961,7 +210848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -218988,7 +210874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -219015,7 +210900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -219042,7 +210926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -219069,7 +210952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -219096,7 +210978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -219123,7 +211004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -219150,7 +211030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -219177,7 +211056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -219204,7 +211082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -219231,7 +211108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -219258,7 +211134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -219285,7 +211160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -219312,7 +211186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -219339,7 +211212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -219366,7 +211238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -219393,7 +211264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:29:46.365Z", @@ -219418,7 +211288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.692Z", @@ -219445,7 +211314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.741Z", @@ -219472,7 +211340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.741Z", @@ -219499,7 +211366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.741Z", @@ -219526,7 +211392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.741Z", @@ -219553,7 +211418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.741Z", @@ -219580,7 +211444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.741Z", @@ -219607,7 +211470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.741Z", @@ -219634,7 +211496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.741Z", @@ -219661,7 +211522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.741Z", @@ -219688,7 +211548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -219715,7 +211574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -219742,7 +211600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -219769,7 +211626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -219796,7 +211652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -219823,7 +211678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -219850,7 +211704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -219877,7 +211730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -219904,7 +211756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -219931,7 +211782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -219958,7 +211808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -219985,7 +211834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220012,7 +211860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220039,7 +211886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220066,7 +211912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220093,7 +211938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220120,7 +211964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220147,7 +211990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220174,7 +212016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220201,7 +212042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220228,7 +212068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220255,7 +212094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220282,7 +212120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220309,7 +212146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220336,7 +212172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220363,7 +212198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220390,7 +212224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220417,7 +212250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220444,7 +212276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220471,7 +212302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220498,7 +212328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220525,7 +212354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220552,7 +212380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220579,7 +212406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220606,7 +212432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220633,7 +212458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220660,7 +212484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220687,7 +212510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220714,7 +212536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.742Z", @@ -220741,7 +212562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -220768,7 +212588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -220795,7 +212614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -220822,7 +212640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -220849,7 +212666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -220876,7 +212692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -220903,7 +212718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -220930,7 +212744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -220957,7 +212770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -220984,7 +212796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221011,7 +212822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221038,7 +212848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221065,7 +212874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221092,7 +212900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221119,7 +212926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221146,7 +212952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221173,7 +212978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221200,7 +213004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221227,7 +213030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221254,7 +213056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221281,7 +213082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221308,7 +213108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221335,7 +213134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221362,7 +213160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221389,7 +213186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221416,7 +213212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221443,7 +213238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221470,7 +213264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221497,7 +213290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221524,7 +213316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221551,7 +213342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221578,7 +213368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221605,7 +213394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221632,7 +213420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221659,7 +213446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.743Z", @@ -221686,7 +213472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.744Z", @@ -221713,7 +213498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.744Z", @@ -221740,7 +213524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.744Z", @@ -221767,7 +213550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.744Z", @@ -221794,7 +213576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.744Z", @@ -221821,7 +213602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.744Z", @@ -221848,7 +213628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.744Z", @@ -221875,7 +213654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.744Z", @@ -221902,7 +213680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.744Z", @@ -221929,7 +213706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.744Z", @@ -221956,7 +213732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.744Z", @@ -221983,7 +213758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.744Z", @@ -222010,7 +213784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.744Z", @@ -222037,7 +213810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.744Z", @@ -222064,7 +213836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.744Z", @@ -222091,7 +213862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.744Z", @@ -222118,7 +213888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.744Z", @@ -222145,7 +213914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.744Z", @@ -222172,7 +213940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.744Z", @@ -222199,7 +213966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.744Z", @@ -222226,7 +213992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:07.744Z", @@ -222251,7 +214016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.047Z", @@ -222278,7 +214042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.096Z", @@ -222305,7 +214068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.096Z", @@ -222332,7 +214094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.096Z", @@ -222359,7 +214120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.096Z", @@ -222386,7 +214146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.096Z", @@ -222413,7 +214172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.096Z", @@ -222440,7 +214198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.096Z", @@ -222467,7 +214224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.096Z", @@ -222494,7 +214250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.096Z", @@ -222521,7 +214276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.096Z", @@ -222548,7 +214302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.096Z", @@ -222575,7 +214328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.096Z", @@ -222602,7 +214354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.097Z", @@ -222629,7 +214380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.097Z", @@ -222656,7 +214406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.097Z", @@ -222683,7 +214432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.097Z", @@ -222710,7 +214458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.097Z", @@ -222737,7 +214484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.097Z", @@ -222764,7 +214510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.097Z", @@ -222791,7 +214536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.097Z", @@ -222818,7 +214562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.097Z", @@ -222845,7 +214588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.097Z", @@ -222872,7 +214614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.097Z", @@ -222899,7 +214640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.097Z", @@ -222926,7 +214666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.097Z", @@ -222953,7 +214692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.097Z", @@ -222980,7 +214718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.097Z", @@ -223007,7 +214744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.097Z", @@ -223034,7 +214770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.097Z", @@ -223061,7 +214796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.097Z", @@ -223088,7 +214822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.097Z", @@ -223115,7 +214848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.098Z", @@ -223142,7 +214874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.098Z", @@ -223169,7 +214900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.098Z", @@ -223196,7 +214926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.098Z", @@ -223223,7 +214952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.098Z", @@ -223250,7 +214978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.098Z", @@ -223277,7 +215004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.098Z", @@ -223304,7 +215030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.098Z", @@ -223331,7 +215056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.098Z", @@ -223358,7 +215082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.098Z", @@ -223385,7 +215108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.098Z", @@ -223412,7 +215134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.098Z", @@ -223439,7 +215160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.098Z", @@ -223466,7 +215186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.098Z", @@ -223493,7 +215212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.098Z", @@ -223520,7 +215238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.098Z", @@ -223547,7 +215264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.098Z", @@ -223574,7 +215290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.098Z", @@ -223601,7 +215316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.098Z", @@ -223628,7 +215342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.098Z", @@ -223655,7 +215368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.099Z", @@ -223682,7 +215394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.099Z", @@ -223709,7 +215420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.099Z", @@ -223736,7 +215446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.099Z", @@ -223763,7 +215472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.099Z", @@ -223790,7 +215498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.099Z", @@ -223817,7 +215524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.099Z", @@ -223844,7 +215550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.099Z", @@ -223871,7 +215576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.099Z", @@ -223898,7 +215602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.100Z", @@ -223925,7 +215628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.100Z", @@ -223952,7 +215654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.100Z", @@ -223979,7 +215680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.100Z", @@ -224006,7 +215706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.100Z", @@ -224033,7 +215732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.100Z", @@ -224060,7 +215758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.100Z", @@ -224087,7 +215784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.100Z", @@ -224114,7 +215810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.100Z", @@ -224141,7 +215836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.102Z", @@ -224168,7 +215862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.103Z", @@ -224195,7 +215888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.103Z", @@ -224222,7 +215914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.103Z", @@ -224249,7 +215940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.104Z", @@ -224276,7 +215966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.104Z", @@ -224303,7 +215992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.104Z", @@ -224330,7 +216018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.104Z", @@ -224357,7 +216044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.104Z", @@ -224384,7 +216070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.104Z", @@ -224411,7 +216096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.104Z", @@ -224438,7 +216122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.104Z", @@ -224465,7 +216148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.104Z", @@ -224492,7 +216174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.104Z", @@ -224519,7 +216200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.104Z", @@ -224546,7 +216226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.104Z", @@ -224573,7 +216252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.104Z", @@ -224600,7 +216278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.104Z", @@ -224627,7 +216304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.104Z", @@ -224654,7 +216330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.105Z", @@ -224681,7 +216356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.105Z", @@ -224708,7 +216382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.105Z", @@ -224735,7 +216408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.105Z", @@ -224762,7 +216434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.105Z", @@ -224789,7 +216460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.105Z", @@ -224816,7 +216486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.105Z", @@ -224843,7 +216512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.105Z", @@ -224870,7 +216538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.105Z", @@ -224897,7 +216564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.105Z", @@ -224924,7 +216590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.105Z", @@ -224951,7 +216616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.105Z", @@ -224978,7 +216642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.105Z", @@ -225005,7 +216668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.105Z", @@ -225032,7 +216694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.105Z", @@ -225059,7 +216720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:12.105Z", @@ -225084,7 +216744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.540Z", @@ -225111,7 +216770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.592Z", @@ -225138,7 +216796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.592Z", @@ -225165,7 +216822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.592Z", @@ -225192,7 +216848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.592Z", @@ -225219,7 +216874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.592Z", @@ -225246,7 +216900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.592Z", @@ -225273,7 +216926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.592Z", @@ -225300,7 +216952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.592Z", @@ -225327,7 +216978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.592Z", @@ -225354,7 +217004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.592Z", @@ -225381,7 +217030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.592Z", @@ -225408,7 +217056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.592Z", @@ -225435,7 +217082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.592Z", @@ -225462,7 +217108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.592Z", @@ -225489,7 +217134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.592Z", @@ -225516,7 +217160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.592Z", @@ -225543,7 +217186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.592Z", @@ -225570,7 +217212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.592Z", @@ -225597,7 +217238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.592Z", @@ -225624,7 +217264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.592Z", @@ -225651,7 +217290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.592Z", @@ -225678,7 +217316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.592Z", @@ -225705,7 +217342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.592Z", @@ -225732,7 +217368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -225759,7 +217394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -225786,7 +217420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -225813,7 +217446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -225840,7 +217472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -225867,7 +217498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -225894,7 +217524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -225921,7 +217550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -225948,7 +217576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -225975,7 +217602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -226002,7 +217628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -226029,7 +217654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -226056,7 +217680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -226083,7 +217706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -226110,7 +217732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -226137,7 +217758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -226164,7 +217784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -226191,7 +217810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -226218,7 +217836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -226245,7 +217862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -226272,7 +217888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -226299,7 +217914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -226326,7 +217940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -226353,7 +217966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.593Z", @@ -226380,7 +217992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -226407,7 +218018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -226434,7 +218044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -226461,7 +218070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -226488,7 +218096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -226515,7 +218122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -226542,7 +218148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -226569,7 +218174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -226596,7 +218200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -226623,7 +218226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -226650,7 +218252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -226677,7 +218278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -226704,7 +218304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -226731,7 +218330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -226758,7 +218356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -226785,7 +218382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -226812,7 +218408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -226839,7 +218434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -226866,7 +218460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -226893,7 +218486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -226920,7 +218512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -226947,7 +218538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -226974,7 +218564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -227001,7 +218590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -227028,7 +218616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -227055,7 +218642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -227082,7 +218668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -227109,7 +218694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -227136,7 +218720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.594Z", @@ -227163,7 +218746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227190,7 +218772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227217,7 +218798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227244,7 +218824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227271,7 +218850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227298,7 +218876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227325,7 +218902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227352,7 +218928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227379,7 +218954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227406,7 +218980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227433,7 +219006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227460,7 +219032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227487,7 +219058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227514,7 +219084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227541,7 +219110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227568,7 +219136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227595,7 +219162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227622,7 +219188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227649,7 +219214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227676,7 +219240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227703,7 +219266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227730,7 +219292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227757,7 +219318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227784,7 +219344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227811,7 +219370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227838,7 +219396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227865,7 +219422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227892,7 +219448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:15.595Z", @@ -227917,7 +219472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.467Z", @@ -227944,7 +219498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -227971,7 +219524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -227998,7 +219550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -228025,7 +219576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -228052,7 +219602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -228079,7 +219628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -228106,7 +219654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -228133,7 +219680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -228160,7 +219706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -228187,7 +219732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -228214,7 +219758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -228241,7 +219784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -228268,7 +219810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -228295,7 +219836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -228322,7 +219862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -228349,7 +219888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -228376,7 +219914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -228403,7 +219940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -228430,7 +219966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -228457,7 +219992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -228484,7 +220018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -228511,7 +220044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -228538,7 +220070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -228565,7 +220096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -228592,7 +220122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.503Z", @@ -228619,7 +220148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -228646,7 +220174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -228673,7 +220200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -228700,7 +220226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -228727,7 +220252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -228754,7 +220278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -228781,7 +220304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -228808,7 +220330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -228835,7 +220356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -228862,7 +220382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -228889,7 +220408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -228916,7 +220434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -228943,7 +220460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -228970,7 +220486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -228997,7 +220512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229024,7 +220538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229051,7 +220564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229078,7 +220590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229105,7 +220616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229132,7 +220642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229159,7 +220668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229186,7 +220694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229213,7 +220720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229240,7 +220746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229267,7 +220772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229294,7 +220798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229321,7 +220824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229348,7 +220850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229375,7 +220876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229402,7 +220902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229429,7 +220928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229456,7 +220954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229483,7 +220980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229510,7 +221006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229537,7 +221032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229564,7 +221058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229591,7 +221084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229618,7 +221110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229645,7 +221136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229672,7 +221162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229699,7 +221188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229726,7 +221214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229753,7 +221240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.504Z", @@ -229780,7 +221266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -229807,7 +221292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -229834,7 +221318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -229861,7 +221344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -229888,7 +221370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -229915,7 +221396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -229942,7 +221422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -229969,7 +221448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -229996,7 +221474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230023,7 +221500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230050,7 +221526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230077,7 +221552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230104,7 +221578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230131,7 +221604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230158,7 +221630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230185,7 +221656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230212,7 +221682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230239,7 +221708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230266,7 +221734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230293,7 +221760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230320,7 +221786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230347,7 +221812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230374,7 +221838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230401,7 +221864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230428,7 +221890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230455,7 +221916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230482,7 +221942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230509,7 +221968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230536,7 +221994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230563,7 +222020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230590,7 +222046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230617,7 +222072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230644,7 +222098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230671,7 +222124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230698,7 +222150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230725,7 +222176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:31:19.505Z", @@ -230750,7 +222200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.467Z", @@ -230777,7 +222226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.561Z", @@ -230804,7 +222252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.562Z", @@ -230831,7 +222278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.562Z", @@ -230858,7 +222304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.562Z", @@ -230885,7 +222330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.562Z", @@ -230912,7 +222356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.562Z", @@ -230939,7 +222382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.563Z", @@ -230966,7 +222408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.563Z", @@ -230993,7 +222434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.563Z", @@ -231020,7 +222460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.563Z", @@ -231047,7 +222486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.563Z", @@ -231074,7 +222512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.564Z", @@ -231101,7 +222538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.564Z", @@ -231128,7 +222564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.564Z", @@ -231155,7 +222590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.564Z", @@ -231182,7 +222616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.564Z", @@ -231209,7 +222642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.564Z", @@ -231236,7 +222668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.564Z", @@ -231263,7 +222694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.564Z", @@ -231290,7 +222720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.564Z", @@ -231317,7 +222746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.565Z", @@ -231344,7 +222772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.565Z", @@ -231371,7 +222798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.565Z", @@ -231398,7 +222824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.565Z", @@ -231425,7 +222850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.565Z", @@ -231452,7 +222876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.565Z", @@ -231479,7 +222902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.565Z", @@ -231506,7 +222928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.565Z", @@ -231533,7 +222954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.566Z", @@ -231560,7 +222980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.566Z", @@ -231587,7 +223006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.566Z", @@ -231614,7 +223032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.566Z", @@ -231641,7 +223058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.566Z", @@ -231668,7 +223084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.566Z", @@ -231695,7 +223110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.566Z", @@ -231722,7 +223136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.566Z", @@ -231749,7 +223162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.566Z", @@ -231776,7 +223188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.566Z", @@ -231803,7 +223214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.566Z", @@ -231830,7 +223240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.566Z", @@ -231857,7 +223266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.566Z", @@ -231884,7 +223292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.567Z", @@ -231911,7 +223318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.567Z", @@ -231938,7 +223344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.567Z", @@ -231965,7 +223370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.567Z", @@ -231992,7 +223396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.567Z", @@ -232019,7 +223422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.567Z", @@ -232046,7 +223448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.567Z", @@ -232073,7 +223474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.567Z", @@ -232100,7 +223500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.567Z", @@ -232127,7 +223526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.567Z", @@ -232154,7 +223552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.567Z", @@ -232181,7 +223578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.568Z", @@ -232208,7 +223604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.568Z", @@ -232235,7 +223630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.568Z", @@ -232262,7 +223656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.568Z", @@ -232289,7 +223682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.568Z", @@ -232316,7 +223708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.568Z", @@ -232343,7 +223734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.568Z", @@ -232370,7 +223760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.568Z", @@ -232397,7 +223786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.568Z", @@ -232424,7 +223812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.568Z", @@ -232451,7 +223838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.568Z", @@ -232478,7 +223864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.568Z", @@ -232505,7 +223890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.568Z", @@ -232532,7 +223916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.568Z", @@ -232559,7 +223942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.569Z", @@ -232586,7 +223968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.569Z", @@ -232613,7 +223994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.569Z", @@ -232640,7 +224020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.569Z", @@ -232667,7 +224046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.569Z", @@ -232694,7 +224072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.569Z", @@ -232721,7 +224098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.569Z", @@ -232748,7 +224124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.569Z", @@ -232775,7 +224150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.569Z", @@ -232802,7 +224176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.569Z", @@ -232829,7 +224202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.569Z", @@ -232856,7 +224228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.569Z", @@ -232883,7 +224254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.569Z", @@ -232910,7 +224280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.569Z", @@ -232937,7 +224306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.569Z", @@ -232964,7 +224332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.570Z", @@ -232991,7 +224358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.570Z", @@ -233018,7 +224384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.570Z", @@ -233045,7 +224410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.570Z", @@ -233072,7 +224436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.570Z", @@ -233099,7 +224462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.570Z", @@ -233126,7 +224488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.570Z", @@ -233153,7 +224514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.570Z", @@ -233180,7 +224540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.570Z", @@ -233207,7 +224566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.570Z", @@ -233234,7 +224592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.570Z", @@ -233261,7 +224618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.570Z", @@ -233288,7 +224644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.570Z", @@ -233315,7 +224670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.570Z", @@ -233342,7 +224696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.571Z", @@ -233369,7 +224722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.571Z", @@ -233396,7 +224748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.571Z", @@ -233423,7 +224774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.571Z", @@ -233450,7 +224800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.571Z", @@ -233477,7 +224826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.571Z", @@ -233504,7 +224852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.571Z", @@ -233531,7 +224878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.571Z", @@ -233558,7 +224904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:30.571Z", @@ -233583,7 +224928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.664Z", @@ -233610,7 +224954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.702Z", @@ -233637,7 +224980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.702Z", @@ -233664,7 +225006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.702Z", @@ -233691,7 +225032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.702Z", @@ -233718,7 +225058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.702Z", @@ -233745,7 +225084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.702Z", @@ -233772,7 +225110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.702Z", @@ -233799,7 +225136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.702Z", @@ -233826,7 +225162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.702Z", @@ -233853,7 +225188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.702Z", @@ -233880,7 +225214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.702Z", @@ -233907,7 +225240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.702Z", @@ -233934,7 +225266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.702Z", @@ -233961,7 +225292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.702Z", @@ -233988,7 +225318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.702Z", @@ -234015,7 +225344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234042,7 +225370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234069,7 +225396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234096,7 +225422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234123,7 +225448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234150,7 +225474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234177,7 +225500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234204,7 +225526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234231,7 +225552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234258,7 +225578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234285,7 +225604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234312,7 +225630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234339,7 +225656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234366,7 +225682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234393,7 +225708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234420,7 +225734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234447,7 +225760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234474,7 +225786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234501,7 +225812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234528,7 +225838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234555,7 +225864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234582,7 +225890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234609,7 +225916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234636,7 +225942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234663,7 +225968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234690,7 +225994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234717,7 +226020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234744,7 +226046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234771,7 +226072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234798,7 +226098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234825,7 +226124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234852,7 +226150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234879,7 +226176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.703Z", @@ -234906,7 +226202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -234933,7 +226228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -234960,7 +226254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -234987,7 +226280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235014,7 +226306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235041,7 +226332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235068,7 +226358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235095,7 +226384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235122,7 +226410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235149,7 +226436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235176,7 +226462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235203,7 +226488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235230,7 +226514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235257,7 +226540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235284,7 +226566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235311,7 +226592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235338,7 +226618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235365,7 +226644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235392,7 +226670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235419,7 +226696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235446,7 +226722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235473,7 +226748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235500,7 +226774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235527,7 +226800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235554,7 +226826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235581,7 +226852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235608,7 +226878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235635,7 +226904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235662,7 +226930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235689,7 +226956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235716,7 +226982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235743,7 +227008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235770,7 +227034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235797,7 +227060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235824,7 +227086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235851,7 +227112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.704Z", @@ -235878,7 +227138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.705Z", @@ -235905,7 +227164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.705Z", @@ -235932,7 +227190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.705Z", @@ -235959,7 +227216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.705Z", @@ -235986,7 +227242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.705Z", @@ -236013,7 +227268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.705Z", @@ -236040,7 +227294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.705Z", @@ -236067,7 +227320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.705Z", @@ -236094,7 +227346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.705Z", @@ -236121,7 +227372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.705Z", @@ -236148,7 +227398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.705Z", @@ -236175,7 +227424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.705Z", @@ -236202,7 +227450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.705Z", @@ -236229,7 +227476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.705Z", @@ -236256,7 +227502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.705Z", @@ -236283,7 +227528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.705Z", @@ -236310,7 +227554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.705Z", @@ -236337,7 +227580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.705Z", @@ -236364,7 +227606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.705Z", @@ -236391,7 +227632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:35.705Z", @@ -236416,7 +227656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.314Z", @@ -236443,7 +227682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.400Z", @@ -236470,7 +227708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.400Z", @@ -236497,7 +227734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.400Z", @@ -236524,7 +227760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.400Z", @@ -236551,7 +227786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.400Z", @@ -236578,7 +227812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.400Z", @@ -236605,7 +227838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.400Z", @@ -236632,7 +227864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.400Z", @@ -236659,7 +227890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.400Z", @@ -236686,7 +227916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.400Z", @@ -236713,7 +227942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.400Z", @@ -236740,7 +227968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.400Z", @@ -236767,7 +227994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -236794,7 +228020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -236821,7 +228046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -236848,7 +228072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -236875,7 +228098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -236902,7 +228124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -236929,7 +228150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -236956,7 +228176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -236983,7 +228202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -237010,7 +228228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -237037,7 +228254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -237064,7 +228280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -237091,7 +228306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -237118,7 +228332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -237145,7 +228358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -237172,7 +228384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -237199,7 +228410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -237226,7 +228436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -237253,7 +228462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -237280,7 +228488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -237307,7 +228514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -237334,7 +228540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -237361,7 +228566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -237388,7 +228592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -237415,7 +228618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -237442,7 +228644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.401Z", @@ -237469,7 +228670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -237496,7 +228696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -237523,7 +228722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -237550,7 +228748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -237577,7 +228774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -237604,7 +228800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -237631,7 +228826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -237658,7 +228852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -237685,7 +228878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -237712,7 +228904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -237739,7 +228930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -237766,7 +228956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -237793,7 +228982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -237820,7 +229008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -237847,7 +229034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -237874,7 +229060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -237901,7 +229086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -237928,7 +229112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -237955,7 +229138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -237982,7 +229164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -238009,7 +229190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -238036,7 +229216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -238063,7 +229242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -238090,7 +229268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -238117,7 +229294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -238144,7 +229320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -238171,7 +229346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -238198,7 +229372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.402Z", @@ -238225,7 +229398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.403Z", @@ -238252,7 +229424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.403Z", @@ -238279,7 +229450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.403Z", @@ -238306,7 +229476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.403Z", @@ -238333,7 +229502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.403Z", @@ -238360,7 +229528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.403Z", @@ -238387,7 +229554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.403Z", @@ -238414,7 +229580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.403Z", @@ -238441,7 +229606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.403Z", @@ -238468,7 +229632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.403Z", @@ -238495,7 +229658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.403Z", @@ -238522,7 +229684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.403Z", @@ -238549,7 +229710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.403Z", @@ -238576,7 +229736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.403Z", @@ -238603,7 +229762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.403Z", @@ -238630,7 +229788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.403Z", @@ -238657,7 +229814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.403Z", @@ -238684,7 +229840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.403Z", @@ -238711,7 +229866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.403Z", @@ -238738,7 +229892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.404Z", @@ -238765,7 +229918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.404Z", @@ -238792,7 +229944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.404Z", @@ -238819,7 +229970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.404Z", @@ -238846,7 +229996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.404Z", @@ -238873,7 +230022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.404Z", @@ -238900,7 +230048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.404Z", @@ -238927,7 +230074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.404Z", @@ -238954,7 +230100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.404Z", @@ -238981,7 +230126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.404Z", @@ -239008,7 +230152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.404Z", @@ -239035,7 +230178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.404Z", @@ -239062,7 +230204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.404Z", @@ -239089,7 +230230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.404Z", @@ -239116,7 +230256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.404Z", @@ -239143,7 +230282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.404Z", @@ -239170,7 +230308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.404Z", @@ -239197,7 +230334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.404Z", @@ -239224,7 +230360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:41.404Z", @@ -239249,7 +230384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.162Z", @@ -239276,7 +230410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.189Z", @@ -239303,7 +230436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.189Z", @@ -239330,7 +230462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.189Z", @@ -239357,7 +230488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.189Z", @@ -239384,7 +230514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.189Z", @@ -239411,7 +230540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.189Z", @@ -239438,7 +230566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -239465,7 +230592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -239492,7 +230618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -239519,7 +230644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -239546,7 +230670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -239573,7 +230696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -239600,7 +230722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -239627,7 +230748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -239654,7 +230774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -239681,7 +230800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -239708,7 +230826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -239735,7 +230852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -239762,7 +230878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -239789,7 +230904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -239816,7 +230930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -239843,7 +230956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -239870,7 +230982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -239897,7 +231008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -239924,7 +231034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -239951,7 +231060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -239978,7 +231086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -240005,7 +231112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -240032,7 +231138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -240059,7 +231164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -240086,7 +231190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -240113,7 +231216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -240140,7 +231242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -240167,7 +231268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -240194,7 +231294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -240221,7 +231320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -240248,7 +231346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -240275,7 +231372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -240302,7 +231398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.190Z", @@ -240329,7 +231424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240356,7 +231450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240383,7 +231476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240410,7 +231502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240437,7 +231528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240464,7 +231554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240491,7 +231580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240518,7 +231606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240545,7 +231632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240572,7 +231658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240599,7 +231684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240626,7 +231710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240653,7 +231736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240680,7 +231762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240707,7 +231788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240734,7 +231814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240761,7 +231840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240788,7 +231866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240815,7 +231892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240842,7 +231918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240869,7 +231944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240896,7 +231970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240923,7 +231996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240950,7 +232022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -240977,7 +232048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -241004,7 +232074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -241031,7 +232100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -241058,7 +232126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -241085,7 +232152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -241112,7 +232178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -241139,7 +232204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -241166,7 +232230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -241193,7 +232256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -241220,7 +232282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.191Z", @@ -241247,7 +232308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241274,7 +232334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241301,7 +232360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241328,7 +232386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241355,7 +232412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241382,7 +232438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241409,7 +232464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241436,7 +232490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241463,7 +232516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241490,7 +232542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241517,7 +232568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241544,7 +232594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241571,7 +232620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241598,7 +232646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241625,7 +232672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241652,7 +232698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241679,7 +232724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241706,7 +232750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241733,7 +232776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241760,7 +232802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241787,7 +232828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241814,7 +232854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241841,7 +232880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241868,7 +232906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241895,7 +232932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241922,7 +232958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241949,7 +232984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -241976,7 +233010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -242003,7 +233036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -242030,7 +233062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -242057,7 +233088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:32:47.192Z", @@ -242082,7 +233112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.788Z", @@ -242109,7 +233138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.875Z", @@ -242136,7 +233164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.875Z", @@ -242163,7 +233190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.875Z", @@ -242190,7 +233216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.876Z", @@ -242217,7 +233242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.876Z", @@ -242244,7 +233268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.876Z", @@ -242271,7 +233294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.876Z", @@ -242298,7 +233320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.876Z", @@ -242325,7 +233346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.876Z", @@ -242352,7 +233372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.876Z", @@ -242379,7 +233398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.876Z", @@ -242406,7 +233424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.876Z", @@ -242433,7 +233450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.876Z", @@ -242460,7 +233476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.876Z", @@ -242487,7 +233502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.876Z", @@ -242514,7 +233528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.877Z", @@ -242541,7 +233554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.877Z", @@ -242568,7 +233580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.877Z", @@ -242595,7 +233606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.877Z", @@ -242622,7 +233632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.877Z", @@ -242649,7 +233658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.877Z", @@ -242676,7 +233684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.877Z", @@ -242703,7 +233710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.877Z", @@ -242730,7 +233736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.877Z", @@ -242757,7 +233762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.877Z", @@ -242784,7 +233788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.877Z", @@ -242811,7 +233814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.878Z", @@ -242838,7 +233840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.878Z", @@ -242865,7 +233866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.878Z", @@ -242892,7 +233892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.878Z", @@ -242919,7 +233918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.878Z", @@ -242946,7 +233944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.878Z", @@ -242973,7 +233970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.878Z", @@ -243000,7 +233996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.878Z", @@ -243027,7 +234022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.878Z", @@ -243054,7 +234048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.878Z", @@ -243081,7 +234074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243108,7 +234100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243135,7 +234126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243162,7 +234152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243189,7 +234178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243216,7 +234204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243243,7 +234230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243270,7 +234256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243297,7 +234282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243324,7 +234308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243351,7 +234334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243378,7 +234360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243405,7 +234386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243432,7 +234412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243459,7 +234438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243486,7 +234464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243513,7 +234490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243540,7 +234516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243567,7 +234542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243594,7 +234568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243621,7 +234594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243648,7 +234620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243675,7 +234646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243702,7 +234672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.879Z", @@ -243729,7 +234698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.880Z", @@ -243756,7 +234724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.880Z", @@ -243783,7 +234750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.880Z", @@ -243810,7 +234776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.880Z", @@ -243837,7 +234802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.880Z", @@ -243864,7 +234828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.880Z", @@ -243891,7 +234854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.880Z", @@ -243918,7 +234880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.880Z", @@ -243945,7 +234906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.880Z", @@ -243972,7 +234932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.880Z", @@ -243999,7 +234958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.880Z", @@ -244026,7 +234984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.881Z", @@ -244053,7 +235010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.881Z", @@ -244080,7 +235036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.881Z", @@ -244107,7 +235062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.881Z", @@ -244134,7 +235088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.881Z", @@ -244161,7 +235114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.881Z", @@ -244188,7 +235140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.881Z", @@ -244215,7 +235166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.881Z", @@ -244242,7 +235192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.881Z", @@ -244269,7 +235218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.881Z", @@ -244296,7 +235244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.881Z", @@ -244323,7 +235270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.881Z", @@ -244350,7 +235296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.882Z", @@ -244377,7 +235322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.882Z", @@ -244404,7 +235348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.882Z", @@ -244431,7 +235374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.882Z", @@ -244458,7 +235400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.882Z", @@ -244485,7 +235426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.882Z", @@ -244512,7 +235452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.882Z", @@ -244539,7 +235478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.882Z", @@ -244566,7 +235504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.882Z", @@ -244593,7 +235530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.882Z", @@ -244620,7 +235556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.883Z", @@ -244647,7 +235582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.883Z", @@ -244674,7 +235608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.883Z", @@ -244701,7 +235634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.889Z", @@ -244728,7 +235660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.889Z", @@ -244755,7 +235686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.889Z", @@ -244782,7 +235712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.889Z", @@ -244809,7 +235738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.889Z", @@ -244836,7 +235764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.889Z", @@ -244863,7 +235790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.889Z", @@ -244890,7 +235816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6437904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:08.889Z", @@ -244915,7 +235840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.840Z", @@ -244942,7 +235866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.908Z", @@ -244969,7 +235892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.908Z", @@ -244996,7 +235918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.908Z", @@ -245023,7 +235944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.908Z", @@ -245050,7 +235970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.908Z", @@ -245077,7 +235996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.908Z", @@ -245104,7 +236022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.908Z", @@ -245131,7 +236048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.908Z", @@ -245158,7 +236074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245185,7 +236100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245212,7 +236126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245239,7 +236152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245266,7 +236178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245293,7 +236204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245320,7 +236230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245347,7 +236256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245374,7 +236282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245401,7 +236308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245428,7 +236334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245455,7 +236360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245482,7 +236386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245509,7 +236412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245536,7 +236438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245563,7 +236464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245590,7 +236490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245617,7 +236516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245644,7 +236542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245671,7 +236568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245698,7 +236594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245725,7 +236620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245752,7 +236646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245779,7 +236672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245806,7 +236698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245833,7 +236724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245860,7 +236750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245887,7 +236776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245914,7 +236802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245941,7 +236828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245968,7 +236854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -245995,7 +236880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -246022,7 +236906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -246049,7 +236932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -246076,7 +236958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -246103,7 +236984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -246130,7 +237010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -246157,7 +237036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -246184,7 +237062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -246211,7 +237088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.909Z", @@ -246238,7 +237114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246265,7 +237140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246292,7 +237166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246319,7 +237192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246346,7 +237218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246373,7 +237244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246400,7 +237270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246427,7 +237296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246454,7 +237322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246481,7 +237348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246508,7 +237374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246535,7 +237400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246562,7 +237426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246589,7 +237452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246616,7 +237478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246643,7 +237504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246670,7 +237530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246697,7 +237556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246724,7 +237582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246751,7 +237608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246778,7 +237634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246805,7 +237660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246832,7 +237686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246859,7 +237712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246886,7 +237738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246913,7 +237764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246940,7 +237790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246967,7 +237816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -246994,7 +237842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -247021,7 +237868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -247048,7 +237894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -247075,7 +237920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -247102,7 +237946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -247129,7 +237972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -247156,7 +237998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -247183,7 +238024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -247210,7 +238050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -247237,7 +238076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -247264,7 +238102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.910Z", @@ -247291,7 +238128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.911Z", @@ -247318,7 +238154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.911Z", @@ -247345,7 +238180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.911Z", @@ -247372,7 +238206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.911Z", @@ -247399,7 +238232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.911Z", @@ -247426,7 +238258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.911Z", @@ -247453,7 +238284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.911Z", @@ -247480,7 +238310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.911Z", @@ -247507,7 +238336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.911Z", @@ -247534,7 +238362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.911Z", @@ -247561,7 +238388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.911Z", @@ -247588,7 +238414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.911Z", @@ -247615,7 +238440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.911Z", @@ -247642,7 +238466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.911Z", @@ -247669,7 +238492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.911Z", @@ -247696,7 +238518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.911Z", @@ -247723,7 +238544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:12.911Z", @@ -247748,7 +238568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.176Z", @@ -247775,7 +238594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.220Z", @@ -247802,7 +238620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.220Z", @@ -247829,7 +238646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.220Z", @@ -247856,7 +238672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.220Z", @@ -247883,7 +238698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.220Z", @@ -247910,7 +238724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.220Z", @@ -247937,7 +238750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.220Z", @@ -247964,7 +238776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.220Z", @@ -247991,7 +238802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.220Z", @@ -248018,7 +238828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.220Z", @@ -248045,7 +238854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.220Z", @@ -248072,7 +238880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.220Z", @@ -248099,7 +238906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.220Z", @@ -248126,7 +238932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.220Z", @@ -248153,7 +238958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.220Z", @@ -248180,7 +238984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.220Z", @@ -248207,7 +239010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.220Z", @@ -248234,7 +239036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.220Z", @@ -248261,7 +239062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.220Z", @@ -248288,7 +239088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.220Z", @@ -248315,7 +239114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.220Z", @@ -248342,7 +239140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248369,7 +239166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248396,7 +239192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248423,7 +239218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248450,7 +239244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248477,7 +239270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248504,7 +239296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248531,7 +239322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248558,7 +239348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248585,7 +239374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248612,7 +239400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248639,7 +239426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248666,7 +239452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248693,7 +239478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248720,7 +239504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248747,7 +239530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248774,7 +239556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248801,7 +239582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248828,7 +239608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248855,7 +239634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248882,7 +239660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248909,7 +239686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248936,7 +239712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248963,7 +239738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -248990,7 +239764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -249017,7 +239790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -249044,7 +239816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -249071,7 +239842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -249098,7 +239868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -249125,7 +239894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -249152,7 +239920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.221Z", @@ -249179,7 +239946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249206,7 +239972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249233,7 +239998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249260,7 +240024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249287,7 +240050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249314,7 +240076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249341,7 +240102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249368,7 +240128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249395,7 +240154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249422,7 +240180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249449,7 +240206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249476,7 +240232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249503,7 +240258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249530,7 +240284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249557,7 +240310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249584,7 +240336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249611,7 +240362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249638,7 +240388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249665,7 +240414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249692,7 +240440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249719,7 +240466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249746,7 +240492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249773,7 +240518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249800,7 +240544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249827,7 +240570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249854,7 +240596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249881,7 +240622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249908,7 +240648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249935,7 +240674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249962,7 +240700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -249989,7 +240726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -250016,7 +240752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -250043,7 +240778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -250070,7 +240804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -250097,7 +240830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -250124,7 +240856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.222Z", @@ -250151,7 +240882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.223Z", @@ -250178,7 +240908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.223Z", @@ -250205,7 +240934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.223Z", @@ -250232,7 +240960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.223Z", @@ -250259,7 +240986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.223Z", @@ -250286,7 +241012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.223Z", @@ -250313,7 +241038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.223Z", @@ -250340,7 +241064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.223Z", @@ -250367,7 +241090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.223Z", @@ -250394,7 +241116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.223Z", @@ -250421,7 +241142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.223Z", @@ -250448,7 +241168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.223Z", @@ -250475,7 +241194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.223Z", @@ -250502,7 +241220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.223Z", @@ -250529,7 +241246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.223Z", @@ -250556,7 +241272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:18.223Z", @@ -250581,7 +241296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.928Z", @@ -250608,7 +241322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.967Z", @@ -250635,7 +241348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.967Z", @@ -250662,7 +241374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.967Z", @@ -250689,7 +241400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.967Z", @@ -250716,7 +241426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -250743,7 +241452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -250770,7 +241478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -250797,7 +241504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -250824,7 +241530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -250851,7 +241556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -250878,7 +241582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -250905,7 +241608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -250932,7 +241634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -250959,7 +241660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -250986,7 +241686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251013,7 +241712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251040,7 +241738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251067,7 +241764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251094,7 +241790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251121,7 +241816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251148,7 +241842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251175,7 +241868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251202,7 +241894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251229,7 +241920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251256,7 +241946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251283,7 +241972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251310,7 +241998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251337,7 +242024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251364,7 +242050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251391,7 +242076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251418,7 +242102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251445,7 +242128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251472,7 +242154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251499,7 +242180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251526,7 +242206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251553,7 +242232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251580,7 +242258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251607,7 +242284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251634,7 +242310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251661,7 +242336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251688,7 +242362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.968Z", @@ -251715,7 +242388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -251742,7 +242414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -251769,7 +242440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -251796,7 +242466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -251823,7 +242492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -251850,7 +242518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -251877,7 +242544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -251904,7 +242570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -251931,7 +242596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -251958,7 +242622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -251985,7 +242648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -252012,7 +242674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -252039,7 +242700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -252066,7 +242726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -252093,7 +242752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -252120,7 +242778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -252147,7 +242804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -252174,7 +242830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -252201,7 +242856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -252228,7 +242882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -252255,7 +242908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -252282,7 +242934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -252309,7 +242960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -252336,7 +242986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -252363,7 +243012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -252390,7 +243038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -252417,7 +243064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -252444,7 +243090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -252471,7 +243116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -252498,7 +243142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -252525,7 +243168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -252552,7 +243194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -252579,7 +243220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.969Z", @@ -252606,7 +243246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -252633,7 +243272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -252660,7 +243298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -252687,7 +243324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -252714,7 +243350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -252741,7 +243376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -252768,7 +243402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -252795,7 +243428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -252822,7 +243454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -252849,7 +243480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -252876,7 +243506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -252903,7 +243532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -252930,7 +243558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -252957,7 +243584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -252984,7 +243610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -253011,7 +243636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -253038,7 +243662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -253065,7 +243688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -253092,7 +243714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -253119,7 +243740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -253146,7 +243766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -253173,7 +243792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -253200,7 +243818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -253227,7 +243844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -253254,7 +243870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -253281,7 +243896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -253308,7 +243922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -253335,7 +243948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -253362,7 +243974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -253389,7 +244000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:35:21.970Z", @@ -253414,7 +244024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.522Z", @@ -253441,7 +244050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.766Z", @@ -253468,7 +244076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.766Z", @@ -253495,7 +244102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.766Z", @@ -253522,7 +244128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.766Z", @@ -253549,7 +244154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.766Z", @@ -253576,7 +244180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -253603,7 +244206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -253630,7 +244232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -253657,7 +244258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -253684,7 +244284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -253711,7 +244310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -253738,7 +244336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -253765,7 +244362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -253792,7 +244388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -253819,7 +244414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -253846,7 +244440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -253873,7 +244466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -253900,7 +244492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -253927,7 +244518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -253954,7 +244544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -253981,7 +244570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -254008,7 +244596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -254035,7 +244622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -254062,7 +244648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -254089,7 +244674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -254116,7 +244700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -254143,7 +244726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -254170,7 +244752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -254197,7 +244778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -254224,7 +244804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -254251,7 +244830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -254278,7 +244856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -254305,7 +244882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.767Z", @@ -254332,7 +244908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254359,7 +244934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254386,7 +244960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254413,7 +244986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254440,7 +245012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254467,7 +245038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254494,7 +245064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254521,7 +245090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254548,7 +245116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254575,7 +245142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254602,7 +245168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254629,7 +245194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254656,7 +245220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254683,7 +245246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254710,7 +245272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254737,7 +245298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254764,7 +245324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254791,7 +245350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254818,7 +245376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254845,7 +245402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254872,7 +245428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254899,7 +245454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254926,7 +245480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254953,7 +245506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -254980,7 +245532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -255007,7 +245558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -255034,7 +245584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -255061,7 +245610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -255088,7 +245636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -255115,7 +245662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.768Z", @@ -255142,7 +245688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255169,7 +245714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255196,7 +245740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255223,7 +245766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255250,7 +245792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255277,7 +245818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255304,7 +245844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255331,7 +245870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255358,7 +245896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255385,7 +245922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255412,7 +245948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255439,7 +245974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255466,7 +246000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255493,7 +246026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255520,7 +246052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255547,7 +246078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255574,7 +246104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255601,7 +246130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255628,7 +246156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255655,7 +246182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255682,7 +246208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255709,7 +246234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255736,7 +246260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255763,7 +246286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255790,7 +246312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255817,7 +246338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255844,7 +246364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255871,7 +246390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255898,7 +246416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255925,7 +246442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255952,7 +246468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.769Z", @@ -255979,7 +246494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.770Z", @@ -256006,7 +246520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.770Z", @@ -256033,7 +246546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.770Z", @@ -256060,7 +246572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.770Z", @@ -256087,7 +246598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.770Z", @@ -256114,7 +246624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.770Z", @@ -256141,7 +246650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.770Z", @@ -256168,7 +246676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.770Z", @@ -256195,7 +246702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.770Z", @@ -256222,7 +246728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.770Z", @@ -256249,7 +246754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.770Z", @@ -256276,7 +246780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.770Z", @@ -256303,7 +246806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.770Z", @@ -256330,7 +246832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.770Z", @@ -256357,7 +246858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.770Z", @@ -256384,7 +246884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.770Z", @@ -256411,7 +246910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.770Z", @@ -256438,7 +246936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.770Z", @@ -256465,7 +246962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.770Z", @@ -256492,7 +246988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.770Z", @@ -256519,7 +247014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -256546,7 +247040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -256573,7 +247066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -256600,7 +247092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -256627,7 +247118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -256654,7 +247144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -256681,7 +247170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -256708,7 +247196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -256735,7 +247222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -256762,7 +247248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -256789,7 +247274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -256816,7 +247300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -256843,7 +247326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -256870,7 +247352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -256897,7 +247378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -256924,7 +247404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -256951,7 +247430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -256978,7 +247456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -257005,7 +247482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -257032,7 +247508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -257059,7 +247534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -257086,7 +247560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -257113,7 +247586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -257140,7 +247612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.771Z", @@ -257167,7 +247638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257194,7 +247664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257221,7 +247690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257248,7 +247716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257275,7 +247742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257302,7 +247768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257329,7 +247794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257356,7 +247820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257383,7 +247846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257410,7 +247872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257437,7 +247898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257464,7 +247924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257491,7 +247950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257518,7 +247976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257545,7 +248002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257572,7 +248028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257599,7 +248054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257626,7 +248080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257653,7 +248106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257680,7 +248132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257707,7 +248158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257734,7 +248184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257761,7 +248210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257788,7 +248236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257815,7 +248262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257842,7 +248288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.772Z", @@ -257869,7 +248314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -257896,7 +248340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -257923,7 +248366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -257950,7 +248392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -257977,7 +248418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258004,7 +248444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258031,7 +248470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258058,7 +248496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258085,7 +248522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258112,7 +248548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258139,7 +248574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258166,7 +248600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258193,7 +248626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258220,7 +248652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258247,7 +248678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258274,7 +248704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258301,7 +248730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258328,7 +248756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258355,7 +248782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258382,7 +248808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258409,7 +248834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258436,7 +248860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258463,7 +248886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258490,7 +248912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258517,7 +248938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258544,7 +248964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258571,7 +248990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258598,7 +249016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258625,7 +249042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258652,7 +249068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258679,7 +249094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.773Z", @@ -258706,7 +249120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -258733,7 +249146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -258760,7 +249172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -258787,7 +249198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -258814,7 +249224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -258841,7 +249250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -258868,7 +249276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -258895,7 +249302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -258922,7 +249328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -258949,7 +249354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -258976,7 +249380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -259003,7 +249406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -259030,7 +249432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -259057,7 +249458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -259084,7 +249484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -259111,7 +249510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -259138,7 +249536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -259165,7 +249562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -259192,7 +249588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -259219,7 +249614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -259246,7 +249640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -259273,7 +249666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -259300,7 +249692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -259327,7 +249718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -259354,7 +249744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -259381,7 +249770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -259408,7 +249796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.774Z", @@ -259435,7 +249822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -259462,7 +249848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -259489,7 +249874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -259516,7 +249900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -259543,7 +249926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -259570,7 +249952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -259597,7 +249978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -259624,7 +250004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -259651,7 +250030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -259678,7 +250056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -259705,7 +250082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -259732,7 +250108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -259759,7 +250134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -259786,7 +250160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -259813,7 +250186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -259840,7 +250212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -259867,7 +250238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -259894,7 +250264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -259921,7 +250290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -259948,7 +250316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -259975,7 +250342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -260002,7 +250368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -260029,7 +250394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -260056,7 +250420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -260083,7 +250446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -260110,7 +250472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -260137,7 +250498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -260164,7 +250524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -260191,7 +250550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -260218,7 +250576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -260245,7 +250602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -260272,7 +250628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.775Z", @@ -260299,7 +250654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260326,7 +250680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260353,7 +250706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260380,7 +250732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260407,7 +250758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260434,7 +250784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260461,7 +250810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260488,7 +250836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260515,7 +250862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260542,7 +250888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260569,7 +250914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260596,7 +250940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260623,7 +250966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260650,7 +250992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260677,7 +251018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260704,7 +251044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260731,7 +251070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260758,7 +251096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260785,7 +251122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260812,7 +251148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260839,7 +251174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260866,7 +251200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260893,7 +251226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260920,7 +251252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260947,7 +251278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -260974,7 +251304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -261001,7 +251330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -261028,7 +251356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -261055,7 +251382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -261082,7 +251408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.776Z", @@ -261109,7 +251434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261136,7 +251460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261163,7 +251486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261190,7 +251512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261217,7 +251538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261244,7 +251564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261271,7 +251590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261298,7 +251616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261325,7 +251642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261352,7 +251668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261379,7 +251694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261406,7 +251720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261433,7 +251746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261460,7 +251772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261487,7 +251798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261514,7 +251824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261541,7 +251850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261568,7 +251876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261595,7 +251902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261622,7 +251928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261649,7 +251954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261676,7 +251980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261703,7 +252006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261730,7 +252032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261757,7 +252058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261784,7 +252084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261811,7 +252110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261838,7 +252136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261865,7 +252162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.777Z", @@ -261892,7 +252188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -261919,7 +252214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -261946,7 +252240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -261973,7 +252266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262000,7 +252292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262027,7 +252318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262054,7 +252344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262081,7 +252370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262108,7 +252396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262135,7 +252422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262162,7 +252448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262189,7 +252474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262216,7 +252500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262243,7 +252526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262270,7 +252552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262297,7 +252578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262324,7 +252604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262351,7 +252630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262378,7 +252656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262405,7 +252682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262432,7 +252708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262459,7 +252734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262486,7 +252760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262513,7 +252786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262540,7 +252812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262567,7 +252838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262594,7 +252864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262621,7 +252890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262648,7 +252916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262675,7 +252942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262702,7 +252968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262729,7 +252994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.778Z", @@ -262756,7 +253020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -262783,7 +253046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -262810,7 +253072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -262837,7 +253098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -262864,7 +253124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -262891,7 +253150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -262918,7 +253176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -262945,7 +253202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -262972,7 +253228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -262999,7 +253254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263026,7 +253280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263053,7 +253306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263080,7 +253332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263107,7 +253358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263134,7 +253384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263161,7 +253410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263188,7 +253436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263215,7 +253462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263242,7 +253488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263269,7 +253514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263296,7 +253540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263323,7 +253566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263350,7 +253592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263377,7 +253618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263404,7 +253644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263431,7 +253670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263458,7 +253696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263485,7 +253722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263512,7 +253748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263539,7 +253774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263566,7 +253800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263593,7 +253826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263620,7 +253852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.779Z", @@ -263647,7 +253878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -263674,7 +253904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -263701,7 +253930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -263728,7 +253956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -263755,7 +253982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -263782,7 +254008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -263809,7 +254034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -263836,7 +254060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -263863,7 +254086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -263890,7 +254112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -263917,7 +254138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -263944,7 +254164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -263971,7 +254190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -263998,7 +254216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -264025,7 +254242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -264052,7 +254268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -264079,7 +254294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -264106,7 +254320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -264133,7 +254346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -264160,7 +254372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -264187,7 +254398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -264214,7 +254424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -264241,7 +254450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -264268,7 +254476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -264295,7 +254502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -264322,7 +254528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -264349,7 +254554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -264376,7 +254580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -264403,7 +254606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -264430,7 +254632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.780Z", @@ -264457,7 +254658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -264484,7 +254684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -264511,7 +254710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -264538,7 +254736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -264565,7 +254762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -264592,7 +254788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -264619,7 +254814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -264646,7 +254840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -264673,7 +254866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -264700,7 +254892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -264727,7 +254918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -264754,7 +254944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -264781,7 +254970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -264808,7 +254996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -264835,7 +255022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -264862,7 +255048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -264889,7 +255074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -264916,7 +255100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -264943,7 +255126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -264970,7 +255152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -264997,7 +255178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -265024,7 +255204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -265051,7 +255230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -265078,7 +255256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -265105,7 +255282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -265132,7 +255308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -265159,7 +255334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -265186,7 +255360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -265213,7 +255386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -265240,7 +255412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -265267,7 +255438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -265294,7 +255464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -265321,7 +255490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.781Z", @@ -265348,7 +255516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265375,7 +255542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265402,7 +255568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265429,7 +255594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265456,7 +255620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265483,7 +255646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265510,7 +255672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265537,7 +255698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265564,7 +255724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265591,7 +255750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265618,7 +255776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265645,7 +255802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265672,7 +255828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265699,7 +255854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265726,7 +255880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265753,7 +255906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265780,7 +255932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265807,7 +255958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265834,7 +255984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265861,7 +256010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265888,7 +256036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265915,7 +256062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265942,7 +256088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265969,7 +256114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -265996,7 +256140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -266023,7 +256166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.782Z", @@ -266050,7 +256192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.784Z", @@ -266077,7 +256218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.784Z", @@ -266104,7 +256244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.784Z", @@ -266131,7 +256270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.784Z", @@ -266158,7 +256296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.784Z", @@ -266185,7 +256322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.784Z", @@ -266212,7 +256348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.784Z", @@ -266239,7 +256374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.784Z", @@ -266266,7 +256400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.784Z", @@ -266293,7 +256426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.784Z", @@ -266320,7 +256452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.784Z", @@ -266347,7 +256478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.784Z", @@ -266374,7 +256504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.784Z", @@ -266401,7 +256530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.784Z", @@ -266428,7 +256556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.784Z", @@ -266455,7 +256582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.784Z", @@ -266482,7 +256608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.784Z", @@ -266509,7 +256634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.784Z", @@ -266536,7 +256660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.784Z", @@ -266563,7 +256686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.784Z", @@ -266590,7 +256712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.784Z", @@ -266617,7 +256738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.784Z", @@ -266644,7 +256764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.784Z", @@ -266671,7 +256790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -266698,7 +256816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -266725,7 +256842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -266752,7 +256868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -266779,7 +256894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -266806,7 +256920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -266833,7 +256946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -266860,7 +256972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -266887,7 +256998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -266914,7 +257024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -266941,7 +257050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -266968,7 +257076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -266995,7 +257102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -267022,7 +257128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -267049,7 +257154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -267076,7 +257180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -267103,7 +257206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -267130,7 +257232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -267157,7 +257258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -267184,7 +257284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -267211,7 +257310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -267238,7 +257336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -267265,7 +257362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -267292,7 +257388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -267319,7 +257414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -267346,7 +257440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -267373,7 +257466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -267400,7 +257492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -267427,7 +257518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -267454,7 +257544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.785Z", @@ -267481,7 +257570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.786Z", @@ -267508,7 +257596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.786Z", @@ -267535,7 +257622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.786Z", @@ -267562,7 +257648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:50.786Z", @@ -267587,7 +257672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.823Z", @@ -267614,7 +257698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.988Z", @@ -267641,7 +257724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.988Z", @@ -267668,7 +257750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.988Z", @@ -267695,7 +257776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.988Z", @@ -267722,7 +257802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.988Z", @@ -267749,7 +257828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.988Z", @@ -267776,7 +257854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.988Z", @@ -267803,7 +257880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.988Z", @@ -267830,7 +257906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.988Z", @@ -267857,7 +257932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.988Z", @@ -267884,7 +257958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.988Z", @@ -267911,7 +257984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -267938,7 +258010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -267965,7 +258036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -267992,7 +258062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268019,7 +258088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268046,7 +258114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268073,7 +258140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268100,7 +258166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268127,7 +258192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268154,7 +258218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268181,7 +258244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268208,7 +258270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268235,7 +258296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268262,7 +258322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268289,7 +258348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268316,7 +258374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268343,7 +258400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268370,7 +258426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268397,7 +258452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268424,7 +258478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268451,7 +258504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268478,7 +258530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268505,7 +258556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268532,7 +258582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268559,7 +258608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268586,7 +258634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268613,7 +258660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268640,7 +258686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268667,7 +258712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268694,7 +258738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268721,7 +258764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268748,7 +258790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268775,7 +258816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268802,7 +258842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268829,7 +258868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268856,7 +258894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268883,7 +258920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268910,7 +258946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.989Z", @@ -268937,7 +258972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.991Z", @@ -268964,7 +258998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.991Z", @@ -268991,7 +259024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.991Z", @@ -269018,7 +259050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.991Z", @@ -269045,7 +259076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.991Z", @@ -269072,7 +259102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.991Z", @@ -269099,7 +259128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.991Z", @@ -269126,7 +259154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.991Z", @@ -269153,7 +259180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.991Z", @@ -269180,7 +259206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269207,7 +259232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269234,7 +259258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269261,7 +259284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269288,7 +259310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269315,7 +259336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269342,7 +259362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269369,7 +259388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269396,7 +259414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269423,7 +259440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269450,7 +259466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269477,7 +259492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269504,7 +259518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269531,7 +259544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269558,7 +259570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269585,7 +259596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269612,7 +259622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269639,7 +259648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269666,7 +259674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269693,7 +259700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269720,7 +259726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269747,7 +259752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269774,7 +259778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269801,7 +259804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269828,7 +259830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269855,7 +259856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269882,7 +259882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269909,7 +259908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269936,7 +259934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269963,7 +259960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -269990,7 +259986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -270017,7 +260012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -270044,7 +260038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -270071,7 +260064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -270098,7 +260090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -270125,7 +260116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -270152,7 +260142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -270179,7 +260168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -270206,7 +260194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -270233,7 +260220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.992Z", @@ -270260,7 +260246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270287,7 +260272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270314,7 +260298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270341,7 +260324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270368,7 +260350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270395,7 +260376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270422,7 +260402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270449,7 +260428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270476,7 +260454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270503,7 +260480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270530,7 +260506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270557,7 +260532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270584,7 +260558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270611,7 +260584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270638,7 +260610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270665,7 +260636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270692,7 +260662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270719,7 +260688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270746,7 +260714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270773,7 +260740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270800,7 +260766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270827,7 +260792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270854,7 +260818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270881,7 +260844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270908,7 +260870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270935,7 +260896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270962,7 +260922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -270989,7 +260948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -271016,7 +260974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -271043,7 +261000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -271070,7 +261026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -271097,7 +261052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -271124,7 +261078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -271151,7 +261104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -271178,7 +261130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -271205,7 +261156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -271232,7 +261182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -271259,7 +261208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -271286,7 +261234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -271313,7 +261260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -271340,7 +261286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -271367,7 +261312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.993Z", @@ -271394,7 +261338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -271421,7 +261364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -271448,7 +261390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -271475,7 +261416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -271502,7 +261442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -271529,7 +261468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -271556,7 +261494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -271583,7 +261520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -271610,7 +261546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -271637,7 +261572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -271664,7 +261598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -271691,7 +261624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -271718,7 +261650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -271745,7 +261676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -271772,7 +261702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -271799,7 +261728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -271826,7 +261754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -271853,7 +261780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -271880,7 +261806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -271907,7 +261832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -271934,7 +261858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -271961,7 +261884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -271988,7 +261910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -272015,7 +261936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -272042,7 +261962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -272069,7 +261988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -272096,7 +262014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -272123,7 +262040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -272150,7 +262066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -272177,7 +262092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -272204,7 +262118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -272231,7 +262144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -272258,7 +262170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -272285,7 +262196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -272312,7 +262222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -272339,7 +262248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -272366,7 +262274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -272393,7 +262300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -272420,7 +262326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -272447,7 +262352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -272474,7 +262378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -272501,7 +262404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -272528,7 +262430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -272555,7 +262456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.994Z", @@ -272582,7 +262482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -272609,7 +262508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -272636,7 +262534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -272663,7 +262560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -272690,7 +262586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -272717,7 +262612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -272744,7 +262638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -272771,7 +262664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -272798,7 +262690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -272825,7 +262716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -272852,7 +262742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -272879,7 +262768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -272906,7 +262794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -272933,7 +262820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -272960,7 +262846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -272987,7 +262872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273014,7 +262898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273041,7 +262924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273068,7 +262950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273095,7 +262976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273122,7 +263002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273149,7 +263028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273176,7 +263054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273203,7 +263080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273230,7 +263106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273257,7 +263132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273284,7 +263158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273311,7 +263184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273338,7 +263210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273365,7 +263236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273392,7 +263262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273419,7 +263288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273446,7 +263314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273473,7 +263340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273500,7 +263366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273527,7 +263392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273554,7 +263418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273581,7 +263444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273608,7 +263470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273635,7 +263496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273662,7 +263522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273689,7 +263548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273716,7 +263574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273743,7 +263600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.995Z", @@ -273770,7 +263626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -273797,7 +263652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -273824,7 +263678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -273851,7 +263704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -273878,7 +263730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -273905,7 +263756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -273932,7 +263782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -273959,7 +263808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -273986,7 +263834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274013,7 +263860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274040,7 +263886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274067,7 +263912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274094,7 +263938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274121,7 +263964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274148,7 +263990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274175,7 +264016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274202,7 +264042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274229,7 +264068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274256,7 +264094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274283,7 +264120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274310,7 +264146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274337,7 +264172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274364,7 +264198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274391,7 +264224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274418,7 +264250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274445,7 +264276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274472,7 +264302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274499,7 +264328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274526,7 +264354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274553,7 +264380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274580,7 +264406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274607,7 +264432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274634,7 +264458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274661,7 +264484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274688,7 +264510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274715,7 +264536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274742,7 +264562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274769,7 +264588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274796,7 +264614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274823,7 +264640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274850,7 +264666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274877,7 +264692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274904,7 +264718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.996Z", @@ -274931,7 +264744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -274958,7 +264770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -274985,7 +264796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275012,7 +264822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275039,7 +264848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275066,7 +264874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275093,7 +264900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275120,7 +264926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275147,7 +264952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275174,7 +264978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275201,7 +265004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275228,7 +265030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275255,7 +265056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275282,7 +265082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275309,7 +265108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275336,7 +265134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275363,7 +265160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275390,7 +265186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275417,7 +265212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275444,7 +265238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275471,7 +265264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275498,7 +265290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275525,7 +265316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275552,7 +265342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275579,7 +265368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275606,7 +265394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275633,7 +265420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275660,7 +265446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275687,7 +265472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275714,7 +265498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275741,7 +265524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275768,7 +265550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275795,7 +265576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275822,7 +265602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275849,7 +265628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275876,7 +265654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275903,7 +265680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275930,7 +265706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275957,7 +265732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -275984,7 +265758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.997Z", @@ -276011,7 +265784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276038,7 +265810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276065,7 +265836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276092,7 +265862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276119,7 +265888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276146,7 +265914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276173,7 +265940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276200,7 +265966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276227,7 +265992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276254,7 +266018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276281,7 +266044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276308,7 +266070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276335,7 +266096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276362,7 +266122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276389,7 +266148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276416,7 +266174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276443,7 +266200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276470,7 +266226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276497,7 +266252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276524,7 +266278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276551,7 +266304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276578,7 +266330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276605,7 +266356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276632,7 +266382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276659,7 +266408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276686,7 +266434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276713,7 +266460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276740,7 +266486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.998Z", @@ -276767,7 +266512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.999Z", @@ -276794,7 +266538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.999Z", @@ -276821,7 +266564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.999Z", @@ -276848,7 +266590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.999Z", @@ -276875,7 +266616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.999Z", @@ -276902,7 +266642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.999Z", @@ -276929,7 +266668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.999Z", @@ -276956,7 +266694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.999Z", @@ -276983,7 +266720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.999Z", @@ -277010,7 +266746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.999Z", @@ -277037,7 +266772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.999Z", @@ -277064,7 +266798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.999Z", @@ -277091,7 +266824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.999Z", @@ -277118,7 +266850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.999Z", @@ -277145,7 +266876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.999Z", @@ -277172,7 +266902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.999Z", @@ -277199,7 +266928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.999Z", @@ -277226,7 +266954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.999Z", @@ -277253,7 +266980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.999Z", @@ -277280,7 +267006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:58.999Z", @@ -277307,7 +267032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277334,7 +267058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277361,7 +267084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277388,7 +267110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277415,7 +267136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277442,7 +267162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277469,7 +267188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277496,7 +267214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277523,7 +267240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277550,7 +267266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277577,7 +267292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277604,7 +267318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277631,7 +267344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277658,7 +267370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277685,7 +267396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277712,7 +267422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277739,7 +267448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277766,7 +267474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277793,7 +267500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277820,7 +267526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277847,7 +267552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277874,7 +267578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277901,7 +267604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277928,7 +267630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277955,7 +267656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -277982,7 +267682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.000Z", @@ -278009,7 +267708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278036,7 +267734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278063,7 +267760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278090,7 +267786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278117,7 +267812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278144,7 +267838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278171,7 +267864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278198,7 +267890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278225,7 +267916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278252,7 +267942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278279,7 +267968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278306,7 +267994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278333,7 +268020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278360,7 +268046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278387,7 +268072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278414,7 +268098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278441,7 +268124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278468,7 +268150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278495,7 +268176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278522,7 +268202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278549,7 +268228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278576,7 +268254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278603,7 +268280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278630,7 +268306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278657,7 +268332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278684,7 +268358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278711,7 +268384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278738,7 +268410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278765,7 +268436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278792,7 +268462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278819,7 +268488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278846,7 +268514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278873,7 +268540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278900,7 +268566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.001Z", @@ -278927,7 +268592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -278954,7 +268618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -278981,7 +268644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279008,7 +268670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279035,7 +268696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279062,7 +268722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279089,7 +268748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279116,7 +268774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279143,7 +268800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279170,7 +268826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279197,7 +268852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279224,7 +268878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279251,7 +268904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279278,7 +268930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279305,7 +268956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279332,7 +268982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279359,7 +269008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279386,7 +269034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279413,7 +269060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279440,7 +269086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279467,7 +269112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279494,7 +269138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279521,7 +269164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279548,7 +269190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279575,7 +269216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279602,7 +269242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279629,7 +269268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279656,7 +269294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279683,7 +269320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279710,7 +269346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279737,7 +269372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279764,7 +269398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279791,7 +269424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279818,7 +269450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279845,7 +269476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279872,7 +269502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.002Z", @@ -279899,7 +269528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -279926,7 +269554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -279953,7 +269580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -279980,7 +269606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280007,7 +269632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280034,7 +269658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280061,7 +269684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280088,7 +269710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280115,7 +269736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280142,7 +269762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280169,7 +269788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280196,7 +269814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280223,7 +269840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280250,7 +269866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280277,7 +269892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280304,7 +269918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280331,7 +269944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280358,7 +269970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280385,7 +269996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280412,7 +270022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280439,7 +270048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280466,7 +270074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280493,7 +270100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280520,7 +270126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280547,7 +270152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280574,7 +270178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280601,7 +270204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280628,7 +270230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280655,7 +270256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280682,7 +270282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280709,7 +270308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280736,7 +270334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280763,7 +270360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280790,7 +270386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280817,7 +270412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280844,7 +270438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280871,7 +270464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280898,7 +270490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280925,7 +270516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280952,7 +270542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -280979,7 +270568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -281006,7 +270594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -281033,7 +270620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.003Z", @@ -281060,7 +270646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281087,7 +270672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281114,7 +270698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281141,7 +270724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281168,7 +270750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281195,7 +270776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281222,7 +270802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281249,7 +270828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281276,7 +270854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281303,7 +270880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281330,7 +270906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281357,7 +270932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281384,7 +270958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281411,7 +270984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281438,7 +271010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281465,7 +271036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281492,7 +271062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281519,7 +271088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281546,7 +271114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281573,7 +271140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281600,7 +271166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281627,7 +271192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281654,7 +271218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281681,7 +271244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281708,7 +271270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281735,7 +271296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:51:59.004Z", @@ -281760,7 +271320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.709Z", @@ -281787,7 +271346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.860Z", @@ -281814,7 +271372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.860Z", @@ -281841,7 +271398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -281868,7 +271424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -281895,7 +271450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -281922,7 +271476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -281949,7 +271502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -281976,7 +271528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282003,7 +271554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282030,7 +271580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282057,7 +271606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282084,7 +271632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282111,7 +271658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282138,7 +271684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282165,7 +271710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282192,7 +271736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282219,7 +271762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282246,7 +271788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282273,7 +271814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282300,7 +271840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282327,7 +271866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282354,7 +271892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282381,7 +271918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282408,7 +271944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282435,7 +271970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282462,7 +271996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282489,7 +272022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282516,7 +272048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282543,7 +272074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282570,7 +272100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282597,7 +272126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282624,7 +272152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282651,7 +272178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282678,7 +272204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282705,7 +272230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282732,7 +272256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282759,7 +272282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282786,7 +272308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282813,7 +272334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282840,7 +272360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282867,7 +272386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282894,7 +272412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282921,7 +272438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.861Z", @@ -282948,7 +272464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -282975,7 +272490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283002,7 +272516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283029,7 +272542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283056,7 +272568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283083,7 +272594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283110,7 +272620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283137,7 +272646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283164,7 +272672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283191,7 +272698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283218,7 +272724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283245,7 +272750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283272,7 +272776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283299,7 +272802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283326,7 +272828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283353,7 +272854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283380,7 +272880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283407,7 +272906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283434,7 +272932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283461,7 +272958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283488,7 +272984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283515,7 +273010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283542,7 +273036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283569,7 +273062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283596,7 +273088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283623,7 +273114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283650,7 +273140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283677,7 +273166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283704,7 +273192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283731,7 +273218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283758,7 +273244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283785,7 +273270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283812,7 +273296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283839,7 +273322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283866,7 +273348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283893,7 +273374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.862Z", @@ -283920,7 +273400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -283947,7 +273426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -283974,7 +273452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284001,7 +273478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284028,7 +273504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284055,7 +273530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284082,7 +273556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284109,7 +273582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284136,7 +273608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284163,7 +273634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284190,7 +273660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284217,7 +273686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284244,7 +273712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284271,7 +273738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284298,7 +273764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284325,7 +273790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284352,7 +273816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284379,7 +273842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284406,7 +273868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284433,7 +273894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284460,7 +273920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284487,7 +273946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284514,7 +273972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284541,7 +273998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284568,7 +274024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284595,7 +274050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284622,7 +274076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284649,7 +274102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284676,7 +274128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284703,7 +274154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284730,7 +274180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284757,7 +274206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284784,7 +274232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284811,7 +274258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284838,7 +274284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284865,7 +274310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284892,7 +274336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284919,7 +274362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284946,7 +274388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.863Z", @@ -284973,7 +274414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285000,7 +274440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285027,7 +274466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285054,7 +274492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285081,7 +274518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285108,7 +274544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285135,7 +274570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285162,7 +274596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285189,7 +274622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285216,7 +274648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285243,7 +274674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285270,7 +274700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285297,7 +274726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285324,7 +274752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285351,7 +274778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285378,7 +274804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285405,7 +274830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285432,7 +274856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285459,7 +274882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285486,7 +274908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285513,7 +274934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285540,7 +274960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285567,7 +274986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285594,7 +275012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285621,7 +275038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285648,7 +275064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285675,7 +275090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285702,7 +275116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285729,7 +275142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.864Z", @@ -285756,7 +275168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -285783,7 +275194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -285810,7 +275220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -285837,7 +275246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -285864,7 +275272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -285891,7 +275298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -285918,7 +275324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -285945,7 +275350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -285972,7 +275376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -285999,7 +275402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286026,7 +275428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286053,7 +275454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286080,7 +275480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286107,7 +275506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286134,7 +275532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286161,7 +275558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286188,7 +275584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286215,7 +275610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286242,7 +275636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286269,7 +275662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286296,7 +275688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286323,7 +275714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286350,7 +275740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286377,7 +275766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286404,7 +275792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286431,7 +275818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286458,7 +275844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286485,7 +275870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286512,7 +275896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286539,7 +275922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286566,7 +275948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286593,7 +275974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286620,7 +276000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286647,7 +276026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286674,7 +276052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286701,7 +276078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286728,7 +276104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.865Z", @@ -286755,7 +276130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -286782,7 +276156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -286809,7 +276182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -286836,7 +276208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -286863,7 +276234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -286890,7 +276260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -286917,7 +276286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -286944,7 +276312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -286971,7 +276338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -286998,7 +276364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287025,7 +276390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287052,7 +276416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287079,7 +276442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287106,7 +276468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287133,7 +276494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287160,7 +276520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287187,7 +276546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287214,7 +276572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287241,7 +276598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287268,7 +276624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287295,7 +276650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287322,7 +276676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287349,7 +276702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287376,7 +276728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287403,7 +276754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287430,7 +276780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287457,7 +276806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287484,7 +276832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287511,7 +276858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287538,7 +276884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287565,7 +276910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287592,7 +276936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287619,7 +276962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287646,7 +276988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287673,7 +277014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287700,7 +277040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287727,7 +277066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287754,7 +277092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287781,7 +277118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.866Z", @@ -287808,7 +277144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -287835,7 +277170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -287862,7 +277196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -287889,7 +277222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -287916,7 +277248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -287943,7 +277274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -287970,7 +277300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -287997,7 +277326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288024,7 +277352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288051,7 +277378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288078,7 +277404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288105,7 +277430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288132,7 +277456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288159,7 +277482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288186,7 +277508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288213,7 +277534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288240,7 +277560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288267,7 +277586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288294,7 +277612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288321,7 +277638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288348,7 +277664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288375,7 +277690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288402,7 +277716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288429,7 +277742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288456,7 +277768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288483,7 +277794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288510,7 +277820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288537,7 +277846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288564,7 +277872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288591,7 +277898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288618,7 +277924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288645,7 +277950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288672,7 +277976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288699,7 +278002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288726,7 +278028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288753,7 +278054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288780,7 +278080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288807,7 +278106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288834,7 +278132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288861,7 +278158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.867Z", @@ -288888,7 +278184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -288915,7 +278210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -288942,7 +278236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -288969,7 +278262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -288996,7 +278288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289023,7 +278314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289050,7 +278340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289077,7 +278366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289104,7 +278392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289131,7 +278418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289158,7 +278444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289185,7 +278470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289212,7 +278496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289239,7 +278522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289266,7 +278548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289293,7 +278574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289320,7 +278600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289347,7 +278626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289374,7 +278652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289401,7 +278678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289428,7 +278704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289455,7 +278730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289482,7 +278756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289509,7 +278782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289536,7 +278808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289563,7 +278834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289590,7 +278860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289617,7 +278886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289644,7 +278912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289671,7 +278938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289698,7 +278964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289725,7 +278990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289752,7 +279016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289779,7 +279042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289806,7 +279068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289833,7 +279094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289860,7 +279120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289887,7 +279146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289914,7 +279172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.868Z", @@ -289941,7 +279198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -289968,7 +279224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -289995,7 +279250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290022,7 +279276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290049,7 +279302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290076,7 +279328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290103,7 +279354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290130,7 +279380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290157,7 +279406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290184,7 +279432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290211,7 +279458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290238,7 +279484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290265,7 +279510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290292,7 +279536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290319,7 +279562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290346,7 +279588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290373,7 +279614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290400,7 +279640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290427,7 +279666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290454,7 +279692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290481,7 +279718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290508,7 +279744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290535,7 +279770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290562,7 +279796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290589,7 +279822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290616,7 +279848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290643,7 +279874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290670,7 +279900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290697,7 +279926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290724,7 +279952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290751,7 +279978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290778,7 +280004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290805,7 +280030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290832,7 +280056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290859,7 +280082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290886,7 +280108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.869Z", @@ -290913,7 +280134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -290940,7 +280160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -290967,7 +280186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -290994,7 +280212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291021,7 +280238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291048,7 +280264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291075,7 +280290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291102,7 +280316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291129,7 +280342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291156,7 +280368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291183,7 +280394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291210,7 +280420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291237,7 +280446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291264,7 +280472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291291,7 +280498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291318,7 +280524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291345,7 +280550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291372,7 +280576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291399,7 +280602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291426,7 +280628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291453,7 +280654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291480,7 +280680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291507,7 +280706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291534,7 +280732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291561,7 +280758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291588,7 +280784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291615,7 +280810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291642,7 +280836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291669,7 +280862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291696,7 +280888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291723,7 +280914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291750,7 +280940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291777,7 +280966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291804,7 +280992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291831,7 +281018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291858,7 +281044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291885,7 +281070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.870Z", @@ -291912,7 +281096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -291939,7 +281122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -291966,7 +281148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -291993,7 +281174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292020,7 +281200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292047,7 +281226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292074,7 +281252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292101,7 +281278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292128,7 +281304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292155,7 +281330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292182,7 +281356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292209,7 +281382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292236,7 +281408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292263,7 +281434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292290,7 +281460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292317,7 +281486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292344,7 +281512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292371,7 +281538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292398,7 +281564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292425,7 +281590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292452,7 +281616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292479,7 +281642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292506,7 +281668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292533,7 +281694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292560,7 +281720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292587,7 +281746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292614,7 +281772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292641,7 +281798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292668,7 +281824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292695,7 +281850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292722,7 +281876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292749,7 +281902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292776,7 +281928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292803,7 +281954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292830,7 +281980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292857,7 +282006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292884,7 +282032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.871Z", @@ -292911,7 +282058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -292938,7 +282084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -292965,7 +282110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -292992,7 +282136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293019,7 +282162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293046,7 +282188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293073,7 +282214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293100,7 +282240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293127,7 +282266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293154,7 +282292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293181,7 +282318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293208,7 +282344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293235,7 +282370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293262,7 +282396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293289,7 +282422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293316,7 +282448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293343,7 +282474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293370,7 +282500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293397,7 +282526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293424,7 +282552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293451,7 +282578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293478,7 +282604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293505,7 +282630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293532,7 +282656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293559,7 +282682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293586,7 +282708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293613,7 +282734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293640,7 +282760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293667,7 +282786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293694,7 +282812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293721,7 +282838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293748,7 +282864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293775,7 +282890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293802,7 +282916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293829,7 +282942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.872Z", @@ -293856,7 +282968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -293883,7 +282994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -293910,7 +283020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -293937,7 +283046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -293964,7 +283072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -293991,7 +283098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294018,7 +283124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294045,7 +283150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294072,7 +283176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294099,7 +283202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294126,7 +283228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294153,7 +283254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294180,7 +283280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294207,7 +283306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294234,7 +283332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294261,7 +283358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294288,7 +283384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294315,7 +283410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294342,7 +283436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294369,7 +283462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294396,7 +283488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294423,7 +283514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294450,7 +283540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294477,7 +283566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294504,7 +283592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294531,7 +283618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294558,7 +283644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294585,7 +283670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294612,7 +283696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294639,7 +283722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294666,7 +283748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294693,7 +283774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294720,7 +283800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294747,7 +283826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294774,7 +283852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294801,7 +283878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294828,7 +283904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.873Z", @@ -294855,7 +283930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -294882,7 +283956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -294909,7 +283982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -294936,7 +284008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -294963,7 +284034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -294990,7 +284060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295017,7 +284086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295044,7 +284112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295071,7 +284138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295098,7 +284164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295125,7 +284190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295152,7 +284216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295179,7 +284242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295206,7 +284268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295233,7 +284294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295260,7 +284320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295287,7 +284346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295314,7 +284372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295341,7 +284398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295368,7 +284424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295395,7 +284450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295422,7 +284476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295449,7 +284502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295476,7 +284528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295503,7 +284554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295530,7 +284580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295557,7 +284606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295584,7 +284632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295611,7 +284658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295638,7 +284684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295665,7 +284710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295692,7 +284736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295719,7 +284762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295746,7 +284788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295773,7 +284814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295800,7 +284840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295827,7 +284866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.874Z", @@ -295854,7 +284892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.875Z", @@ -295881,7 +284918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.875Z", @@ -295908,7 +284944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:52:03.875Z", @@ -295933,7 +284968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.369Z", @@ -295960,7 +284994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.554Z", @@ -295987,7 +285020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.554Z", @@ -296014,7 +285046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.554Z", @@ -296041,7 +285072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.554Z", @@ -296068,7 +285098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.554Z", @@ -296095,7 +285124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.554Z", @@ -296122,7 +285150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.554Z", @@ -296149,7 +285176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.554Z", @@ -296176,7 +285202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.554Z", @@ -296203,7 +285228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.554Z", @@ -296230,7 +285254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.554Z", @@ -296257,7 +285280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.554Z", @@ -296284,7 +285306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.554Z", @@ -296311,7 +285332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.554Z", @@ -296338,7 +285358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.554Z", @@ -296365,7 +285384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.554Z", @@ -296392,7 +285410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.554Z", @@ -296419,7 +285436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.554Z", @@ -296446,7 +285462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.554Z", @@ -296473,7 +285488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -296500,7 +285514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -296527,7 +285540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -296554,7 +285566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -296581,7 +285592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -296608,7 +285618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -296635,7 +285644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -296662,7 +285670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -296689,7 +285696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -296716,7 +285722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -296743,7 +285748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -296770,7 +285774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -296797,7 +285800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -296824,7 +285826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -296851,7 +285852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -296878,7 +285878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -296905,7 +285904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -296932,7 +285930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -296959,7 +285956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -296986,7 +285982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -297013,7 +286008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -297040,7 +286034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -297067,7 +286060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -297094,7 +286086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -297121,7 +286112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -297148,7 +286138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -297175,7 +286164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -297202,7 +286190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -297229,7 +286216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -297256,7 +286242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -297283,7 +286268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -297310,7 +286294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -297337,7 +286320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -297364,7 +286346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -297391,7 +286372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -297418,7 +286398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.555Z", @@ -297445,7 +286424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -297472,7 +286450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -297499,7 +286476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -297526,7 +286502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -297553,7 +286528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -297580,7 +286554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -297607,7 +286580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -297634,7 +286606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -297661,7 +286632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -297688,7 +286658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -297715,7 +286684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -297742,7 +286710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -297769,7 +286736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -297796,7 +286762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -297823,7 +286788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -297850,7 +286814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -297877,7 +286840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -297904,7 +286866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -297931,7 +286892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -297958,7 +286918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -297985,7 +286944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -298012,7 +286970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -298039,7 +286996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -298066,7 +287022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -298093,7 +287048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -298120,7 +287074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -298147,7 +287100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -298174,7 +287126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -298201,7 +287152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -298228,7 +287178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -298255,7 +287204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -298282,7 +287230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -298309,7 +287256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -298336,7 +287282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -298363,7 +287308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -298390,7 +287334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.556Z", @@ -298417,7 +287360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -298444,7 +287386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -298471,7 +287412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -298498,7 +287438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -298525,7 +287464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -298552,7 +287490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -298579,7 +287516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -298606,7 +287542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -298633,7 +287568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -298660,7 +287594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -298687,7 +287620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -298714,7 +287646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -298741,7 +287672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -298768,7 +287698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -298795,7 +287724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -298822,7 +287750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -298849,7 +287776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -298876,7 +287802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -298903,7 +287828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -298930,7 +287854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -298957,7 +287880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -298984,7 +287906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -299011,7 +287932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -299038,7 +287958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -299065,7 +287984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -299092,7 +288010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -299119,7 +288036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -299146,7 +288062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -299173,7 +288088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -299200,7 +288114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -299227,7 +288140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -299254,7 +288166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -299281,7 +288192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -299308,7 +288218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -299335,7 +288244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.557Z", @@ -299362,7 +288270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -299389,7 +288296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -299416,7 +288322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -299443,7 +288348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -299470,7 +288374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -299497,7 +288400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -299524,7 +288426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -299551,7 +288452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -299578,7 +288478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -299605,7 +288504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -299632,7 +288530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -299659,7 +288556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -299686,7 +288582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -299713,7 +288608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -299740,7 +288634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -299767,7 +288660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -299794,7 +288686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -299821,7 +288712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -299848,7 +288738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -299875,7 +288764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -299902,7 +288790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -299929,7 +288816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -299956,7 +288842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -299983,7 +288868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -300010,7 +288894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -300037,7 +288920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -300064,7 +288946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -300091,7 +288972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -300118,7 +288998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -300145,7 +289024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -300172,7 +289050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -300199,7 +289076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -300226,7 +289102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -300253,7 +289128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -300280,7 +289154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -300307,7 +289180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -300334,7 +289206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.558Z", @@ -300361,7 +289232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -300388,7 +289258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -300415,7 +289284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -300442,7 +289310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -300469,7 +289336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -300496,7 +289362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -300523,7 +289388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -300550,7 +289414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -300577,7 +289440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -300604,7 +289466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -300631,7 +289492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -300658,7 +289518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -300685,7 +289544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -300712,7 +289570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -300739,7 +289596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -300766,7 +289622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -300793,7 +289648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -300820,7 +289674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -300847,7 +289700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -300874,7 +289726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -300901,7 +289752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -300928,7 +289778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -300955,7 +289804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -300982,7 +289830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -301009,7 +289856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -301036,7 +289882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -301063,7 +289908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -301090,7 +289934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -301117,7 +289960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -301144,7 +289986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -301171,7 +290012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -301198,7 +290038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -301225,7 +290064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -301252,7 +290090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -301279,7 +290116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -301306,7 +290142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.559Z", @@ -301333,7 +290168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301360,7 +290194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301387,7 +290220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301414,7 +290246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301441,7 +290272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301468,7 +290298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301495,7 +290324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301522,7 +290350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301549,7 +290376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301576,7 +290402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301603,7 +290428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301630,7 +290454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301657,7 +290480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301684,7 +290506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301711,7 +290532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301738,7 +290558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301765,7 +290584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301792,7 +290610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301819,7 +290636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301846,7 +290662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301873,7 +290688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301900,7 +290714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301927,7 +290740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301954,7 +290766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -301981,7 +290792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -302008,7 +290818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -302035,7 +290844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -302062,7 +290870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -302089,7 +290896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -302116,7 +290922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -302143,7 +290948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -302170,7 +290974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -302197,7 +291000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -302224,7 +291026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -302251,7 +291052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.560Z", @@ -302278,7 +291078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302305,7 +291104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302332,7 +291130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302359,7 +291156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302386,7 +291182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302413,7 +291208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302440,7 +291234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302467,7 +291260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302494,7 +291286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302521,7 +291312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302548,7 +291338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302575,7 +291364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302602,7 +291390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302629,7 +291416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302656,7 +291442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302683,7 +291468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302710,7 +291494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302737,7 +291520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302764,7 +291546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302791,7 +291572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302818,7 +291598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302845,7 +291624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302872,7 +291650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302899,7 +291676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302926,7 +291702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302953,7 +291728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -302980,7 +291754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -303007,7 +291780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -303034,7 +291806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -303061,7 +291832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -303088,7 +291858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -303115,7 +291884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -303142,7 +291910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -303169,7 +291936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -303196,7 +291962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -303223,7 +291988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.561Z", @@ -303250,7 +292014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303277,7 +292040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303304,7 +292066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303331,7 +292092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303358,7 +292118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303385,7 +292144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303412,7 +292170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303439,7 +292196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303466,7 +292222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303493,7 +292248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303520,7 +292274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303547,7 +292300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303574,7 +292326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303601,7 +292352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303628,7 +292378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303655,7 +292404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303682,7 +292430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303709,7 +292456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303736,7 +292482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303763,7 +292508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303790,7 +292534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303817,7 +292560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303844,7 +292586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303871,7 +292612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303898,7 +292638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303925,7 +292664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303952,7 +292690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -303979,7 +292716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -304006,7 +292742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -304033,7 +292768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -304060,7 +292794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -304087,7 +292820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -304114,7 +292846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -304141,7 +292872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -304168,7 +292898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -304195,7 +292924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.562Z", @@ -304222,7 +292950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.563Z", @@ -304249,7 +292976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.563Z", @@ -304276,7 +293002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.563Z", @@ -304303,7 +293028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.563Z", @@ -304330,7 +293054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.563Z", @@ -304357,7 +293080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.563Z", @@ -304384,7 +293106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.563Z", @@ -304411,7 +293132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.563Z", @@ -304438,7 +293158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.563Z", @@ -304465,7 +293184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.563Z", @@ -304492,7 +293210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.563Z", @@ -304519,7 +293236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.563Z", @@ -304546,7 +293262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.564Z", @@ -304573,7 +293288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.564Z", @@ -304600,7 +293314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.564Z", @@ -304627,7 +293340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.564Z", @@ -304654,7 +293366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.564Z", @@ -304681,7 +293392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.564Z", @@ -304708,7 +293418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.564Z", @@ -304735,7 +293444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.564Z", @@ -304762,7 +293470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.564Z", @@ -304789,7 +293496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.564Z", @@ -304816,7 +293522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.564Z", @@ -304843,7 +293548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.564Z", @@ -304870,7 +293574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.564Z", @@ -304897,7 +293600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.564Z", @@ -304924,7 +293626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.564Z", @@ -304951,7 +293652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.564Z", @@ -304978,7 +293678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.564Z", @@ -305005,7 +293704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.565Z", @@ -305032,7 +293730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.565Z", @@ -305059,7 +293756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.565Z", @@ -305086,7 +293782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.565Z", @@ -305113,7 +293808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.565Z", @@ -305140,7 +293834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.565Z", @@ -305167,7 +293860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.565Z", @@ -305194,7 +293886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.565Z", @@ -305221,7 +293912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.565Z", @@ -305248,7 +293938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.565Z", @@ -305275,7 +293964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.565Z", @@ -305302,7 +293990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.565Z", @@ -305329,7 +294016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.565Z", @@ -305356,7 +294042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.565Z", @@ -305383,7 +294068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.565Z", @@ -305410,7 +294094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.565Z", @@ -305437,7 +294120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.565Z", @@ -305464,7 +294146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -305491,7 +294172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -305518,7 +294198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -305545,7 +294224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -305572,7 +294250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -305599,7 +294276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -305626,7 +294302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -305653,7 +294328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -305680,7 +294354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -305707,7 +294380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -305734,7 +294406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -305761,7 +294432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -305788,7 +294458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -305815,7 +294484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -305842,7 +294510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -305869,7 +294536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -305896,7 +294562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -305923,7 +294588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -305950,7 +294614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -305977,7 +294640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -306004,7 +294666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -306031,7 +294692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -306058,7 +294718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -306085,7 +294744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -306112,7 +294770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -306139,7 +294796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -306166,7 +294822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -306193,7 +294848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -306220,7 +294874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -306247,7 +294900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -306274,7 +294926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -306301,7 +294952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -306328,7 +294978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -306355,7 +295004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -306382,7 +295030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.566Z", @@ -306409,7 +295056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -306436,7 +295082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -306463,7 +295108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -306490,7 +295134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -306517,7 +295160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -306544,7 +295186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -306571,7 +295212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -306598,7 +295238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -306625,7 +295264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -306652,7 +295290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -306679,7 +295316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -306706,7 +295342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -306733,7 +295368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -306760,7 +295394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -306787,7 +295420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -306814,7 +295446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -306841,7 +295472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -306868,7 +295498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -306895,7 +295524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -306922,7 +295550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -306949,7 +295576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -306976,7 +295602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -307003,7 +295628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -307030,7 +295654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -307057,7 +295680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -307084,7 +295706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -307111,7 +295732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -307138,7 +295758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -307165,7 +295784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -307192,7 +295810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -307219,7 +295836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -307246,7 +295862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -307273,7 +295888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -307300,7 +295914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -307327,7 +295940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -307354,7 +295966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -307381,7 +295992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.567Z", @@ -307408,7 +296018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -307435,7 +296044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -307462,7 +296070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -307489,7 +296096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -307516,7 +296122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -307543,7 +296148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -307570,7 +296174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -307597,7 +296200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -307624,7 +296226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -307651,7 +296252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -307678,7 +296278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -307705,7 +296304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -307732,7 +296330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -307759,7 +296356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -307786,7 +296382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -307813,7 +296408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -307840,7 +296434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -307867,7 +296460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -307894,7 +296486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -307921,7 +296512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -307948,7 +296538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -307975,7 +296564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -308002,7 +296590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -308029,7 +296616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -308056,7 +296642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -308083,7 +296668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -308110,7 +296694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -308137,7 +296720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -308164,7 +296746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -308191,7 +296772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -308218,7 +296798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -308245,7 +296824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -308272,7 +296850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -308299,7 +296876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -308326,7 +296902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.568Z", @@ -308353,7 +296928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -308380,7 +296954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -308407,7 +296980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -308434,7 +297006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -308461,7 +297032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -308488,7 +297058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -308515,7 +297084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -308542,7 +297110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -308569,7 +297136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -308596,7 +297162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -308623,7 +297188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -308650,7 +297214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -308677,7 +297240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -308704,7 +297266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -308731,7 +297292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -308758,7 +297318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -308785,7 +297344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -308812,7 +297370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -308839,7 +297396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -308866,7 +297422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -308893,7 +297448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -308920,7 +297474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -308947,7 +297500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -308974,7 +297526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -309001,7 +297552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -309028,7 +297578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -309055,7 +297604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -309082,7 +297630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -309109,7 +297656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -309136,7 +297682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -309163,7 +297708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -309190,7 +297734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -309217,7 +297760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -309244,7 +297786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.569Z", @@ -309271,7 +297812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309298,7 +297838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309325,7 +297864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309352,7 +297890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309379,7 +297916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309406,7 +297942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309433,7 +297968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309460,7 +297994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309487,7 +298020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309514,7 +298046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309541,7 +298072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309568,7 +298098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309595,7 +298124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309622,7 +298150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309649,7 +298176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309676,7 +298202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309703,7 +298228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309730,7 +298254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309757,7 +298280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309784,7 +298306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309811,7 +298332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309838,7 +298358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309865,7 +298384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309892,7 +298410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309919,7 +298436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309946,7 +298462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -309973,7 +298488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -310000,7 +298514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -310027,7 +298540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -310054,7 +298566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -310081,7 +298592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:12.570Z", @@ -310106,7 +298616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.349Z", @@ -310133,7 +298642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.503Z", @@ -310160,7 +298668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.503Z", @@ -310187,7 +298694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.503Z", @@ -310214,7 +298720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.503Z", @@ -310241,7 +298746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.503Z", @@ -310268,7 +298772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.503Z", @@ -310295,7 +298798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310322,7 +298824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310349,7 +298850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310376,7 +298876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310403,7 +298902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310430,7 +298928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310457,7 +298954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310484,7 +298980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310511,7 +299006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310538,7 +299032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310565,7 +299058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310592,7 +299084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310619,7 +299110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310646,7 +299136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310673,7 +299162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310700,7 +299188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310727,7 +299214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310754,7 +299240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310781,7 +299266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310808,7 +299292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310835,7 +299318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310862,7 +299344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310889,7 +299370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310916,7 +299396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310943,7 +299422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310970,7 +299448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -310997,7 +299474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -311024,7 +299500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -311051,7 +299526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -311078,7 +299552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -311105,7 +299578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.504Z", @@ -311132,7 +299604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311159,7 +299630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311186,7 +299656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311213,7 +299682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311240,7 +299708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311267,7 +299734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311294,7 +299760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311321,7 +299786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311348,7 +299812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311375,7 +299838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311402,7 +299864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311429,7 +299890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311456,7 +299916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311483,7 +299942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311510,7 +299968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311537,7 +299994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311564,7 +300020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311591,7 +300046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311618,7 +300072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311645,7 +300098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311672,7 +300124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311699,7 +300150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311726,7 +300176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311753,7 +300202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311780,7 +300228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311807,7 +300254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311834,7 +300280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311861,7 +300306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311888,7 +300332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311915,7 +300358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311942,7 +300384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311969,7 +300410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -311996,7 +300436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -312023,7 +300462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -312050,7 +300488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -312077,7 +300514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -312104,7 +300540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -312131,7 +300566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.505Z", @@ -312158,7 +300592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312185,7 +300618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312212,7 +300644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312239,7 +300670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312266,7 +300696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312293,7 +300722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312320,7 +300748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312347,7 +300774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312374,7 +300800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312401,7 +300826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312428,7 +300852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312455,7 +300878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312482,7 +300904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312509,7 +300930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312536,7 +300956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312563,7 +300982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312590,7 +301008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312617,7 +301034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312644,7 +301060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312671,7 +301086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312698,7 +301112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312725,7 +301138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312752,7 +301164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312779,7 +301190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312806,7 +301216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312833,7 +301242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312860,7 +301268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312887,7 +301294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312914,7 +301320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312941,7 +301346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312968,7 +301372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -312995,7 +301398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -313022,7 +301424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.506Z", @@ -313049,7 +301450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313076,7 +301476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313103,7 +301502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313130,7 +301528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313157,7 +301554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313184,7 +301580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313211,7 +301606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313238,7 +301632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313265,7 +301658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313292,7 +301684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313319,7 +301710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313346,7 +301736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313373,7 +301762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313400,7 +301788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313427,7 +301814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313454,7 +301840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313481,7 +301866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313508,7 +301892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313535,7 +301918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313562,7 +301944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313589,7 +301970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313616,7 +301996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313643,7 +302022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313670,7 +302048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313697,7 +302074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313724,7 +302100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313751,7 +302126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313778,7 +302152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313805,7 +302178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313832,7 +302204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313859,7 +302230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313886,7 +302256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313913,7 +302282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313940,7 +302308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313967,7 +302334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -313994,7 +302360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.507Z", @@ -314021,7 +302386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314048,7 +302412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314075,7 +302438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314102,7 +302464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314129,7 +302490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314156,7 +302516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314183,7 +302542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314210,7 +302568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314237,7 +302594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314264,7 +302620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314291,7 +302646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314318,7 +302672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314345,7 +302698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314372,7 +302724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314399,7 +302750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314426,7 +302776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314453,7 +302802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314480,7 +302828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314507,7 +302854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314534,7 +302880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314561,7 +302906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314588,7 +302932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314615,7 +302958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314642,7 +302984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314669,7 +303010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314696,7 +303036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314723,7 +303062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314750,7 +303088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314777,7 +303114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314804,7 +303140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314831,7 +303166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314858,7 +303192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.508Z", @@ -314885,7 +303218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.509Z", @@ -314912,7 +303244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.509Z", @@ -314939,7 +303270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.509Z", @@ -314966,7 +303296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.509Z", @@ -314993,7 +303322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.509Z", @@ -315020,7 +303348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.509Z", @@ -315047,7 +303374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.509Z", @@ -315074,7 +303400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.509Z", @@ -315101,7 +303426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.509Z", @@ -315128,7 +303452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.509Z", @@ -315155,7 +303478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.509Z", @@ -315182,7 +303504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.509Z", @@ -315209,7 +303530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.509Z", @@ -315236,7 +303556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.509Z", @@ -315263,7 +303582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.509Z", @@ -315290,7 +303608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.509Z", @@ -315317,7 +303634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.509Z", @@ -315344,7 +303660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.509Z", @@ -315371,7 +303686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.509Z", @@ -315398,7 +303712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.509Z", @@ -315425,7 +303738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.509Z", @@ -315452,7 +303764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.510Z", @@ -315479,7 +303790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.510Z", @@ -315506,7 +303816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.510Z", @@ -315533,7 +303842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.510Z", @@ -315560,7 +303868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.510Z", @@ -315587,7 +303894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.510Z", @@ -315614,7 +303920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.510Z", @@ -315641,7 +303946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.510Z", @@ -315668,7 +303972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.510Z", @@ -315695,7 +303998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.510Z", @@ -315722,7 +304024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.510Z", @@ -315749,7 +304050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.510Z", @@ -315776,7 +304076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.510Z", @@ -315803,7 +304102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.510Z", @@ -315830,7 +304128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.510Z", @@ -315857,7 +304154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.510Z", @@ -315884,7 +304180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.510Z", @@ -315911,7 +304206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.511Z", @@ -315938,7 +304232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.511Z", @@ -315965,7 +304258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.511Z", @@ -315992,7 +304284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.511Z", @@ -316019,7 +304310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.511Z", @@ -316046,7 +304336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.511Z", @@ -316073,7 +304362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.511Z", @@ -316100,7 +304388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.511Z", @@ -316127,7 +304414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.511Z", @@ -316154,7 +304440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.511Z", @@ -316181,7 +304466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.511Z", @@ -316208,7 +304492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.511Z", @@ -316235,7 +304518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.512Z", @@ -316262,7 +304544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.512Z", @@ -316289,7 +304570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.512Z", @@ -316316,7 +304596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.512Z", @@ -316343,7 +304622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.512Z", @@ -316370,7 +304648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.512Z", @@ -316397,7 +304674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.512Z", @@ -316424,7 +304700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.512Z", @@ -316451,7 +304726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.512Z", @@ -316478,7 +304752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.512Z", @@ -316505,7 +304778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.512Z", @@ -316532,7 +304804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.512Z", @@ -316559,7 +304830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.512Z", @@ -316586,7 +304856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.512Z", @@ -316613,7 +304882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.512Z", @@ -316640,7 +304908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.512Z", @@ -316667,7 +304934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.512Z", @@ -316694,7 +304960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.513Z", @@ -316721,7 +304986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.513Z", @@ -316748,7 +305012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.513Z", @@ -316775,7 +305038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.513Z", @@ -316802,7 +305064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.513Z", @@ -316829,7 +305090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.513Z", @@ -316856,7 +305116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.513Z", @@ -316883,7 +305142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.513Z", @@ -316910,7 +305168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.513Z", @@ -316937,7 +305194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.513Z", @@ -316964,7 +305220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.513Z", @@ -316991,7 +305246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.513Z", @@ -317018,7 +305272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.513Z", @@ -317045,7 +305298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.513Z", @@ -317072,7 +305324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.513Z", @@ -317099,7 +305350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.513Z", @@ -317126,7 +305376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.513Z", @@ -317153,7 +305402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.513Z", @@ -317180,7 +305428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.513Z", @@ -317207,7 +305454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.513Z", @@ -317234,7 +305480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.513Z", @@ -317261,7 +305506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.514Z", @@ -317288,7 +305532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.514Z", @@ -317315,7 +305558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.514Z", @@ -317342,7 +305584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.514Z", @@ -317369,7 +305610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.514Z", @@ -317396,7 +305636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.514Z", @@ -317423,7 +305662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.514Z", @@ -317450,7 +305688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.514Z", @@ -317477,7 +305714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.514Z", @@ -317504,7 +305740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.514Z", @@ -317531,7 +305766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.514Z", @@ -317558,7 +305792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.514Z", @@ -317585,7 +305818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.514Z", @@ -317612,7 +305844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.514Z", @@ -317639,7 +305870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.514Z", @@ -317666,7 +305896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.514Z", @@ -317693,7 +305922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.514Z", @@ -317720,7 +305948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.514Z", @@ -317747,7 +305974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.514Z", @@ -317774,7 +306000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.514Z", @@ -317801,7 +306026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.514Z", @@ -317828,7 +306052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.515Z", @@ -317855,7 +306078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.515Z", @@ -317882,7 +306104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.515Z", @@ -317909,7 +306130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.515Z", @@ -317936,7 +306156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.515Z", @@ -317963,7 +306182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.515Z", @@ -317990,7 +306208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.515Z", @@ -318017,7 +306234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.515Z", @@ -318044,7 +306260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.515Z", @@ -318071,7 +306286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.515Z", @@ -318098,7 +306312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.515Z", @@ -318125,7 +306338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.515Z", @@ -318152,7 +306364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.515Z", @@ -318179,7 +306390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.515Z", @@ -318206,7 +306416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.515Z", @@ -318233,7 +306442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.515Z", @@ -318260,7 +306468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.515Z", @@ -318287,7 +306494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.515Z", @@ -318314,7 +306520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.515Z", @@ -318341,7 +306546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.516Z", @@ -318368,7 +306572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.516Z", @@ -318395,7 +306598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.516Z", @@ -318422,7 +306624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.516Z", @@ -318449,7 +306650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.516Z", @@ -318476,7 +306676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.516Z", @@ -318503,7 +306702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.516Z", @@ -318530,7 +306728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.516Z", @@ -318557,7 +306754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.516Z", @@ -318584,7 +306780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.516Z", @@ -318611,7 +306806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.516Z", @@ -318638,7 +306832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.516Z", @@ -318665,7 +306858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.516Z", @@ -318692,7 +306884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.516Z", @@ -318719,7 +306910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.516Z", @@ -318746,7 +306936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.516Z", @@ -318773,7 +306962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.516Z", @@ -318800,7 +306988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.516Z", @@ -318827,7 +307014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.516Z", @@ -318854,7 +307040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.517Z", @@ -318881,7 +307066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.517Z", @@ -318908,7 +307092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.517Z", @@ -318935,7 +307118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.517Z", @@ -318962,7 +307144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.517Z", @@ -318989,7 +307170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.517Z", @@ -319016,7 +307196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.517Z", @@ -319043,7 +307222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.517Z", @@ -319070,7 +307248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.517Z", @@ -319097,7 +307274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.517Z", @@ -319124,7 +307300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.517Z", @@ -319151,7 +307326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.517Z", @@ -319178,7 +307352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.517Z", @@ -319205,7 +307378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.517Z", @@ -319232,7 +307404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.517Z", @@ -319259,7 +307430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.517Z", @@ -319286,7 +307456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.517Z", @@ -319313,7 +307482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.518Z", @@ -319340,7 +307508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.518Z", @@ -319367,7 +307534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.518Z", @@ -319394,7 +307560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.518Z", @@ -319421,7 +307586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.518Z", @@ -319448,7 +307612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.518Z", @@ -319475,7 +307638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.518Z", @@ -319502,7 +307664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.518Z", @@ -319529,7 +307690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.518Z", @@ -319556,7 +307716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.518Z", @@ -319583,7 +307742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.518Z", @@ -319610,7 +307768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.518Z", @@ -319637,7 +307794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.518Z", @@ -319664,7 +307820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.518Z", @@ -319691,7 +307846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.518Z", @@ -319718,7 +307872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.518Z", @@ -319745,7 +307898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.518Z", @@ -319772,7 +307924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.518Z", @@ -319799,7 +307950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.519Z", @@ -319826,7 +307976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.519Z", @@ -319853,7 +308002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.519Z", @@ -319880,7 +308028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.519Z", @@ -319907,7 +308054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.519Z", @@ -319934,7 +308080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.519Z", @@ -319961,7 +308106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.519Z", @@ -319988,7 +308132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.519Z", @@ -320015,7 +308158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.519Z", @@ -320042,7 +308184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.519Z", @@ -320069,7 +308210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.519Z", @@ -320096,7 +308236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.519Z", @@ -320123,7 +308262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.519Z", @@ -320150,7 +308288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.519Z", @@ -320177,7 +308314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.519Z", @@ -320204,7 +308340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.519Z", @@ -320231,7 +308366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.519Z", @@ -320258,7 +308392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.520Z", @@ -320285,7 +308418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.520Z", @@ -320312,7 +308444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.520Z", @@ -320339,7 +308470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.520Z", @@ -320366,7 +308496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.520Z", @@ -320393,7 +308522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.520Z", @@ -320420,7 +308548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.520Z", @@ -320447,7 +308574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.520Z", @@ -320474,7 +308600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.520Z", @@ -320501,7 +308626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.520Z", @@ -320528,7 +308652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.520Z", @@ -320555,7 +308678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.520Z", @@ -320582,7 +308704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.520Z", @@ -320609,7 +308730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.520Z", @@ -320636,7 +308756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.520Z", @@ -320663,7 +308782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.520Z", @@ -320690,7 +308808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.520Z", @@ -320717,7 +308834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.520Z", @@ -320744,7 +308860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.521Z", @@ -320771,7 +308886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.521Z", @@ -320798,7 +308912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.521Z", @@ -320825,7 +308938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.521Z", @@ -320852,7 +308964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.521Z", @@ -320879,7 +308990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.521Z", @@ -320906,7 +309016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.521Z", @@ -320933,7 +309042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.521Z", @@ -320960,7 +309068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.521Z", @@ -320987,7 +309094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.521Z", @@ -321014,7 +309120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.521Z", @@ -321041,7 +309146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.521Z", @@ -321068,7 +309172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.521Z", @@ -321095,7 +309198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.521Z", @@ -321122,7 +309224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.521Z", @@ -321149,7 +309250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.521Z", @@ -321176,7 +309276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.521Z", @@ -321203,7 +309302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.522Z", @@ -321230,7 +309328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.522Z", @@ -321257,7 +309354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.522Z", @@ -321284,7 +309380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.522Z", @@ -321311,7 +309406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.522Z", @@ -321338,7 +309432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.522Z", @@ -321365,7 +309458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.522Z", @@ -321392,7 +309484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.522Z", @@ -321419,7 +309510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.522Z", @@ -321446,7 +309536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.522Z", @@ -321473,7 +309562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.522Z", @@ -321500,7 +309588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.522Z", @@ -321527,7 +309614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.522Z", @@ -321554,7 +309640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.522Z", @@ -321581,7 +309666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.522Z", @@ -321608,7 +309692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.522Z", @@ -321635,7 +309718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.522Z", @@ -321662,7 +309744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.522Z", @@ -321689,7 +309770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.522Z", @@ -321716,7 +309796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.523Z", @@ -321743,7 +309822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.523Z", @@ -321770,7 +309848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.523Z", @@ -321797,7 +309874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.523Z", @@ -321824,7 +309900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.523Z", @@ -321851,7 +309926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.523Z", @@ -321878,7 +309952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.523Z", @@ -321905,7 +309978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.523Z", @@ -321932,7 +310004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.523Z", @@ -321959,7 +310030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.523Z", @@ -321986,7 +310056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.523Z", @@ -322013,7 +310082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.523Z", @@ -322040,7 +310108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.523Z", @@ -322067,7 +310134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.523Z", @@ -322094,7 +310160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.523Z", @@ -322121,7 +310186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.523Z", @@ -322148,7 +310212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.524Z", @@ -322175,7 +310238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.524Z", @@ -322202,7 +310264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.524Z", @@ -322229,7 +310290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.524Z", @@ -322256,7 +310316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.524Z", @@ -322283,7 +310342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.524Z", @@ -322310,7 +310368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.524Z", @@ -322337,7 +310394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.524Z", @@ -322364,7 +310420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.524Z", @@ -322391,7 +310446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.524Z", @@ -322418,7 +310472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.524Z", @@ -322445,7 +310498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.524Z", @@ -322472,7 +310524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.524Z", @@ -322499,7 +310550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.524Z", @@ -322526,7 +310576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.524Z", @@ -322553,7 +310602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.524Z", @@ -322580,7 +310628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.524Z", @@ -322607,7 +310654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.525Z", @@ -322634,7 +310680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.525Z", @@ -322661,7 +310706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.525Z", @@ -322688,7 +310732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.525Z", @@ -322715,7 +310758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.525Z", @@ -322742,7 +310784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.525Z", @@ -322769,7 +310810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.525Z", @@ -322796,7 +310836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.525Z", @@ -322823,7 +310862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.525Z", @@ -322850,7 +310888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.525Z", @@ -322877,7 +310914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.525Z", @@ -322904,7 +310940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.525Z", @@ -322931,7 +310966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.525Z", @@ -322958,7 +310992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.525Z", @@ -322985,7 +311018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.525Z", @@ -323012,7 +311044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.525Z", @@ -323039,7 +311070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323066,7 +311096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323093,7 +311122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323120,7 +311148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323147,7 +311174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323174,7 +311200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323201,7 +311226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323228,7 +311252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323255,7 +311278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323282,7 +311304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323309,7 +311330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323336,7 +311356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323363,7 +311382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323390,7 +311408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323417,7 +311434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323444,7 +311460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323471,7 +311486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323498,7 +311512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323525,7 +311538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323552,7 +311564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323579,7 +311590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323606,7 +311616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323633,7 +311642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323660,7 +311668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.526Z", @@ -323687,7 +311694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.527Z", @@ -323714,7 +311720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.527Z", @@ -323741,7 +311746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.527Z", @@ -323768,7 +311772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.527Z", @@ -323795,7 +311798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.527Z", @@ -323822,7 +311824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.527Z", @@ -323849,7 +311850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.527Z", @@ -323876,7 +311876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.527Z", @@ -323903,7 +311902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.527Z", @@ -323930,7 +311928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.527Z", @@ -323957,7 +311954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.527Z", @@ -323984,7 +311980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.527Z", @@ -324011,7 +312006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.527Z", @@ -324038,7 +312032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.527Z", @@ -324065,7 +312058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.527Z", @@ -324092,7 +312084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.527Z", @@ -324119,7 +312110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.527Z", @@ -324146,7 +312136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.527Z", @@ -324173,7 +312162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.527Z", @@ -324200,7 +312188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.528Z", @@ -324227,7 +312214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.528Z", @@ -324254,7 +312240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:19.528Z", @@ -324279,7 +312264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:24.905Z", @@ -324306,7 +312290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.083Z", @@ -324333,7 +312316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324360,7 +312342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324387,7 +312368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324414,7 +312394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324441,7 +312420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324468,7 +312446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324495,7 +312472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324522,7 +312498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324549,7 +312524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324576,7 +312550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324603,7 +312576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324630,7 +312602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324657,7 +312628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324684,7 +312654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324711,7 +312680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324738,7 +312706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324765,7 +312732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324792,7 +312758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324819,7 +312784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324846,7 +312810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324873,7 +312836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324900,7 +312862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324927,7 +312888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324954,7 +312914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.084Z", @@ -324981,7 +312940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325008,7 +312966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325035,7 +312992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325062,7 +313018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325089,7 +313044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325116,7 +313070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325143,7 +313096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325170,7 +313122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325197,7 +313148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325224,7 +313174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325251,7 +313200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325278,7 +313226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325305,7 +313252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325332,7 +313278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325359,7 +313304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325386,7 +313330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325413,7 +313356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325440,7 +313382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325467,7 +313408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325494,7 +313434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325521,7 +313460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325548,7 +313486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325575,7 +313512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325602,7 +313538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325629,7 +313564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325656,7 +313590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325683,7 +313616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325710,7 +313642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325737,7 +313668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.085Z", @@ -325764,7 +313694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -325791,7 +313720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -325818,7 +313746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -325845,7 +313772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -325872,7 +313798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -325899,7 +313824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -325926,7 +313850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -325953,7 +313876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -325980,7 +313902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326007,7 +313928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326034,7 +313954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326061,7 +313980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326088,7 +314006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326115,7 +314032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326142,7 +314058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326169,7 +314084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326196,7 +314110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326223,7 +314136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326250,7 +314162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326277,7 +314188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326304,7 +314214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326331,7 +314240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326358,7 +314266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326385,7 +314292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326412,7 +314318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326439,7 +314344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326466,7 +314370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326493,7 +314396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326520,7 +314422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326547,7 +314448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326574,7 +314474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326601,7 +314500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.086Z", @@ -326628,7 +314526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -326655,7 +314552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -326682,7 +314578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -326709,7 +314604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -326736,7 +314630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -326763,7 +314656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -326790,7 +314682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -326817,7 +314708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -326844,7 +314734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -326871,7 +314760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -326898,7 +314786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -326925,7 +314812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -326952,7 +314838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -326979,7 +314864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -327006,7 +314890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -327033,7 +314916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -327060,7 +314942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -327087,7 +314968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -327114,7 +314994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -327141,7 +315020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -327168,7 +315046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -327195,7 +315072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -327222,7 +315098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -327249,7 +315124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -327276,7 +315150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -327303,7 +315176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -327330,7 +315202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -327357,7 +315228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -327384,7 +315254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -327411,7 +315280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -327438,7 +315306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -327465,7 +315332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -327492,7 +315358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -327519,7 +315384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -327546,7 +315410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -327573,7 +315436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.087Z", @@ -327600,7 +315462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -327627,7 +315488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -327654,7 +315514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -327681,7 +315540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -327708,7 +315566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -327735,7 +315592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -327762,7 +315618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -327789,7 +315644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -327816,7 +315670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -327843,7 +315696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -327870,7 +315722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -327897,7 +315748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -327924,7 +315774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -327951,7 +315800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -327978,7 +315826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -328005,7 +315852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -328032,7 +315878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -328059,7 +315904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -328086,7 +315930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -328113,7 +315956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -328140,7 +315982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -328167,7 +316008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -328194,7 +316034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -328221,7 +316060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -328248,7 +316086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -328275,7 +316112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.088Z", @@ -328302,7 +316138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.089Z", @@ -328329,7 +316164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.089Z", @@ -328356,7 +316190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.089Z", @@ -328383,7 +316216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.089Z", @@ -328410,7 +316242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.089Z", @@ -328437,7 +316268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.089Z", @@ -328464,7 +316294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.089Z", @@ -328491,7 +316320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.089Z", @@ -328518,7 +316346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.089Z", @@ -328545,7 +316372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.089Z", @@ -328572,7 +316398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.089Z", @@ -328599,7 +316424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.089Z", @@ -328626,7 +316450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.089Z", @@ -328653,7 +316476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.089Z", @@ -328680,7 +316502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.089Z", @@ -328707,7 +316528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.089Z", @@ -328734,7 +316554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.090Z", @@ -328761,7 +316580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.090Z", @@ -328788,7 +316606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.090Z", @@ -328815,7 +316632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.090Z", @@ -328842,7 +316658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.090Z", @@ -328869,7 +316684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.091Z", @@ -328896,7 +316710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.091Z", @@ -328923,7 +316736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.092Z", @@ -328950,7 +316762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.092Z", @@ -328977,7 +316788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.092Z", @@ -329004,7 +316814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.092Z", @@ -329031,7 +316840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.092Z", @@ -329058,7 +316866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.092Z", @@ -329085,7 +316892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.092Z", @@ -329112,7 +316918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.092Z", @@ -329139,7 +316944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.093Z", @@ -329166,7 +316970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.093Z", @@ -329193,7 +316996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.093Z", @@ -329220,7 +317022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.093Z", @@ -329247,7 +317048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.093Z", @@ -329274,7 +317074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.093Z", @@ -329301,7 +317100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.093Z", @@ -329328,7 +317126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.093Z", @@ -329355,7 +317152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.093Z", @@ -329382,7 +317178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.094Z", @@ -329409,7 +317204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.094Z", @@ -329436,7 +317230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.094Z", @@ -329463,7 +317256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.094Z", @@ -329490,7 +317282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.094Z", @@ -329517,7 +317308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.094Z", @@ -329544,7 +317334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.094Z", @@ -329571,7 +317360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.094Z", @@ -329598,7 +317386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.094Z", @@ -329625,7 +317412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.094Z", @@ -329652,7 +317438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -329679,7 +317464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -329706,7 +317490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -329733,7 +317516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -329760,7 +317542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -329787,7 +317568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -329814,7 +317594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -329841,7 +317620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -329868,7 +317646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -329895,7 +317672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -329922,7 +317698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -329949,7 +317724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -329976,7 +317750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330003,7 +317776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330030,7 +317802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330057,7 +317828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330084,7 +317854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330111,7 +317880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330138,7 +317906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330165,7 +317932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330192,7 +317958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330219,7 +317984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330246,7 +318010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330273,7 +318036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330300,7 +318062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330327,7 +318088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330354,7 +318114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330381,7 +318140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330408,7 +318166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330435,7 +318192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330462,7 +318218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330489,7 +318244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330516,7 +318270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330543,7 +318296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330570,7 +318322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330597,7 +318348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.095Z", @@ -330624,7 +318374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -330651,7 +318400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -330678,7 +318426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -330705,7 +318452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -330732,7 +318478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -330759,7 +318504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -330786,7 +318530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -330813,7 +318556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -330840,7 +318582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -330867,7 +318608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -330894,7 +318634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -330921,7 +318660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -330948,7 +318686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -330975,7 +318712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -331002,7 +318738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -331029,7 +318764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -331056,7 +318790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -331083,7 +318816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -331110,7 +318842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -331137,7 +318868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -331164,7 +318894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -331191,7 +318920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -331218,7 +318946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -331245,7 +318972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -331272,7 +318998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -331299,7 +319024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -331326,7 +319050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -331353,7 +319076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -331380,7 +319102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -331407,7 +319128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -331434,7 +319154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.096Z", @@ -331461,7 +319180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -331488,7 +319206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -331515,7 +319232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -331542,7 +319258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -331569,7 +319284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -331596,7 +319310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -331623,7 +319336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -331650,7 +319362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -331677,7 +319388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -331704,7 +319414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -331731,7 +319440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -331758,7 +319466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -331785,7 +319492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -331812,7 +319518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -331839,7 +319544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -331866,7 +319570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -331893,7 +319596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -331920,7 +319622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -331947,7 +319648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -331974,7 +319674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -332001,7 +319700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -332028,7 +319726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -332055,7 +319752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -332082,7 +319778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -332109,7 +319804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -332136,7 +319830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -332163,7 +319856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -332190,7 +319882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -332217,7 +319908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -332244,7 +319934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -332271,7 +319960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -332298,7 +319986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -332325,7 +320012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -332352,7 +320038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -332379,7 +320064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -332406,7 +320090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.097Z", @@ -332433,7 +320116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.098Z", @@ -332460,7 +320142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.098Z", @@ -332487,7 +320168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.098Z", @@ -332514,7 +320194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.098Z", @@ -332541,7 +320220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.098Z", @@ -332568,7 +320246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.098Z", @@ -332595,7 +320272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.098Z", @@ -332622,7 +320298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.098Z", @@ -332649,7 +320324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.098Z", @@ -332676,7 +320350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.098Z", @@ -332703,7 +320376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.098Z", @@ -332730,7 +320402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.098Z", @@ -332757,7 +320428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.098Z", @@ -332784,7 +320454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.098Z", @@ -332811,7 +320480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.098Z", @@ -332838,7 +320506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.098Z", @@ -332865,7 +320532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.098Z", @@ -332892,7 +320558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.098Z", @@ -332919,7 +320584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.098Z", @@ -332946,7 +320610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.098Z", @@ -332973,7 +320636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.098Z", @@ -333000,7 +320662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.098Z", @@ -333027,7 +320688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.100Z", @@ -333054,7 +320714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.100Z", @@ -333081,7 +320740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.100Z", @@ -333108,7 +320766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.100Z", @@ -333135,7 +320792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.100Z", @@ -333162,7 +320818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.100Z", @@ -333189,7 +320844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.100Z", @@ -333216,7 +320870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.100Z", @@ -333243,7 +320896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.100Z", @@ -333270,7 +320922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.100Z", @@ -333297,7 +320948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.100Z", @@ -333324,7 +320974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.101Z", @@ -333351,7 +321000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.101Z", @@ -333378,7 +321026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.101Z", @@ -333405,7 +321052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.101Z", @@ -333432,7 +321078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.101Z", @@ -333459,7 +321104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.101Z", @@ -333486,7 +321130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.101Z", @@ -333513,7 +321156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.101Z", @@ -333540,7 +321182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.101Z", @@ -333567,7 +321208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.101Z", @@ -333594,7 +321234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.101Z", @@ -333621,7 +321260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.101Z", @@ -333648,7 +321286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.101Z", @@ -333675,7 +321312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.101Z", @@ -333702,7 +321338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.101Z", @@ -333729,7 +321364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.101Z", @@ -333756,7 +321390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.101Z", @@ -333783,7 +321416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.101Z", @@ -333810,7 +321442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.101Z", @@ -333837,7 +321468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.101Z", @@ -333864,7 +321494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.101Z", @@ -333891,7 +321520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.101Z", @@ -333918,7 +321546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -333945,7 +321572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -333972,7 +321598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -333999,7 +321624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334026,7 +321650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334053,7 +321676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334080,7 +321702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334107,7 +321728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334134,7 +321754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334161,7 +321780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334188,7 +321806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334215,7 +321832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334242,7 +321858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334269,7 +321884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334296,7 +321910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334323,7 +321936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334350,7 +321962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334377,7 +321988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334404,7 +322014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334431,7 +322040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334458,7 +322066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334485,7 +322092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334512,7 +322118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334539,7 +322144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334566,7 +322170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334593,7 +322196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334620,7 +322222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334647,7 +322248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334674,7 +322274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334701,7 +322300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334728,7 +322326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334755,7 +322352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334782,7 +322378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.102Z", @@ -334809,7 +322404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.103Z", @@ -334836,7 +322430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.103Z", @@ -334863,7 +322456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.103Z", @@ -334890,7 +322482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.103Z", @@ -334917,7 +322508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.103Z", @@ -334944,7 +322534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.103Z", @@ -334971,7 +322560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.103Z", @@ -334998,7 +322586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.103Z", @@ -335025,7 +322612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.103Z", @@ -335052,7 +322638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.103Z", @@ -335079,7 +322664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.103Z", @@ -335106,7 +322690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.103Z", @@ -335133,7 +322716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.103Z", @@ -335160,7 +322742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.103Z", @@ -335187,7 +322768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.103Z", @@ -335214,7 +322794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.103Z", @@ -335241,7 +322820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.103Z", @@ -335268,7 +322846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.103Z", @@ -335295,7 +322872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.103Z", @@ -335322,7 +322898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.103Z", @@ -335349,7 +322924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.103Z", @@ -335376,7 +322950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.103Z", @@ -335403,7 +322976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.103Z", @@ -335430,7 +323002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -335457,7 +323028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -335484,7 +323054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -335511,7 +323080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -335538,7 +323106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -335565,7 +323132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -335592,7 +323158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -335619,7 +323184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -335646,7 +323210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -335673,7 +323236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -335700,7 +323262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -335727,7 +323288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -335754,7 +323314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -335781,7 +323340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -335808,7 +323366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -335835,7 +323392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -335862,7 +323418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -335889,7 +323444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -335916,7 +323470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -335943,7 +323496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -335970,7 +323522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -335997,7 +323548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -336024,7 +323574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -336051,7 +323600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -336078,7 +323626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.104Z", @@ -336105,7 +323652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336132,7 +323678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336159,7 +323704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336186,7 +323730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336213,7 +323756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336240,7 +323782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336267,7 +323808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336294,7 +323834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336321,7 +323860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336348,7 +323886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336375,7 +323912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336402,7 +323938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336429,7 +323964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336456,7 +323990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336483,7 +324016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336510,7 +324042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336537,7 +324068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336564,7 +324094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336591,7 +324120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336618,7 +324146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336645,7 +324172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336672,7 +324198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336699,7 +324224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336726,7 +324250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336753,7 +324276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336780,7 +324302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336807,7 +324328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336834,7 +324354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336861,7 +324380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336888,7 +324406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336915,7 +324432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.105Z", @@ -336942,7 +324458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.106Z", @@ -336969,7 +324484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.106Z", @@ -336996,7 +324510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.106Z", @@ -337023,7 +324536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.106Z", @@ -337050,7 +324562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.106Z", @@ -337077,7 +324588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.106Z", @@ -337104,7 +324614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.106Z", @@ -337131,7 +324640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.106Z", @@ -337158,7 +324666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.106Z", @@ -337185,7 +324692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.106Z", @@ -337212,7 +324718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.106Z", @@ -337239,7 +324744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.106Z", @@ -337266,7 +324770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.106Z", @@ -337293,7 +324796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.106Z", @@ -337320,7 +324822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.106Z", @@ -337347,7 +324848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.107Z", @@ -337374,7 +324874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.107Z", @@ -337401,7 +324900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.107Z", @@ -337428,7 +324926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.107Z", @@ -337455,7 +324952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.107Z", @@ -337482,7 +324978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.107Z", @@ -337509,7 +325004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.107Z", @@ -337536,7 +325030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.107Z", @@ -337563,7 +325056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.107Z", @@ -337590,7 +325082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.107Z", @@ -337617,7 +325108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.107Z", @@ -337644,7 +325134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.107Z", @@ -337671,7 +325160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.107Z", @@ -337698,7 +325186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.108Z", @@ -337725,7 +325212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.108Z", @@ -337752,7 +325238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.108Z", @@ -337779,7 +325264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.108Z", @@ -337806,7 +325290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.108Z", @@ -337833,7 +325316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.108Z", @@ -337860,7 +325342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.108Z", @@ -337887,7 +325368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.108Z", @@ -337914,7 +325394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.109Z", @@ -337941,7 +325420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.109Z", @@ -337968,7 +325446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.109Z", @@ -337995,7 +325472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.109Z", @@ -338022,7 +325498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.109Z", @@ -338049,7 +325524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.109Z", @@ -338076,7 +325550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.109Z", @@ -338103,7 +325576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.109Z", @@ -338130,7 +325602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.109Z", @@ -338157,7 +325628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.109Z", @@ -338184,7 +325654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.109Z", @@ -338211,7 +325680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.109Z", @@ -338238,7 +325706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.109Z", @@ -338265,7 +325732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.109Z", @@ -338292,7 +325758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.109Z", @@ -338319,7 +325784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.109Z", @@ -338346,7 +325810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.109Z", @@ -338373,7 +325836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.109Z", @@ -338400,7 +325862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.109Z", @@ -338427,7 +325888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:53:25.109Z", @@ -338452,7 +325912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.585Z", @@ -338479,7 +325938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.621Z", @@ -338506,7 +325964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.621Z", @@ -338533,7 +325990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.621Z", @@ -338560,7 +326016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.621Z", @@ -338587,7 +326042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.621Z", @@ -338614,7 +326068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.622Z", @@ -338641,7 +326094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.622Z", @@ -338668,7 +326120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.622Z", @@ -338695,7 +326146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.622Z", @@ -338722,7 +326172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.622Z", @@ -338749,7 +326198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.622Z", @@ -338776,7 +326224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.622Z", @@ -338803,7 +326250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.622Z", @@ -338830,7 +326276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.622Z", @@ -338857,7 +326302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.622Z", @@ -338884,7 +326328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.622Z", @@ -338911,7 +326354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.622Z", @@ -338938,7 +326380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.622Z", @@ -338965,7 +326406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -338992,7 +326432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339019,7 +326458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339046,7 +326484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339073,7 +326510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339100,7 +326536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339127,7 +326562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339154,7 +326588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339181,7 +326614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339208,7 +326640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339235,7 +326666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339262,7 +326692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339289,7 +326718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339316,7 +326744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339343,7 +326770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339370,7 +326796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339397,7 +326822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339424,7 +326848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339451,7 +326874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339478,7 +326900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339505,7 +326926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339532,7 +326952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339559,7 +326978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339586,7 +327004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339613,7 +327030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339640,7 +327056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339667,7 +327082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339694,7 +327108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339721,7 +327134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339748,7 +327160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339775,7 +327186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339802,7 +327212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339829,7 +327238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.623Z", @@ -339856,7 +327264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -339883,7 +327290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -339910,7 +327316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -339937,7 +327342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -339964,7 +327368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -339991,7 +327394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340018,7 +327420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340045,7 +327446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340072,7 +327472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340099,7 +327498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340126,7 +327524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340153,7 +327550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340180,7 +327576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340207,7 +327602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340234,7 +327628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340261,7 +327654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340288,7 +327680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340315,7 +327706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340342,7 +327732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340369,7 +327758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340396,7 +327784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340423,7 +327810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340450,7 +327836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340477,7 +327862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340504,7 +327888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340531,7 +327914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340558,7 +327940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340585,7 +327966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340612,7 +327992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340639,7 +328018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340666,7 +328044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340693,7 +328070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340720,7 +328096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340747,7 +328122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340774,7 +328148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.624Z", @@ -340801,7 +328174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.625Z", @@ -340828,7 +328200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.625Z", @@ -340855,7 +328226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.625Z", @@ -340882,7 +328252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.625Z", @@ -340909,7 +328278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.625Z", @@ -340936,7 +328304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.625Z", @@ -340963,7 +328330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.625Z", @@ -340990,7 +328356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.625Z", @@ -341017,7 +328382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.625Z", @@ -341044,7 +328408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.625Z", @@ -341071,7 +328434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.625Z", @@ -341098,7 +328460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.625Z", @@ -341125,7 +328486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.625Z", @@ -341152,7 +328512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.625Z", @@ -341179,7 +328538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.625Z", @@ -341206,7 +328564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.625Z", @@ -341233,7 +328590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.625Z", @@ -341260,7 +328616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.625Z", @@ -341287,7 +328642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:35.625Z", @@ -341312,7 +328666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.304Z", @@ -341339,7 +328692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.375Z", @@ -341366,7 +328718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.375Z", @@ -341393,7 +328744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.375Z", @@ -341420,7 +328770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.375Z", @@ -341447,7 +328796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.375Z", @@ -341474,7 +328822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.375Z", @@ -341501,7 +328848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.375Z", @@ -341528,7 +328874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.375Z", @@ -341555,7 +328900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.375Z", @@ -341582,7 +328926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.375Z", @@ -341609,7 +328952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.375Z", @@ -341636,7 +328978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.375Z", @@ -341663,7 +329004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.375Z", @@ -341690,7 +329030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.375Z", @@ -341717,7 +329056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.375Z", @@ -341744,7 +329082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.376Z", @@ -341771,7 +329108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.376Z", @@ -341798,7 +329134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.376Z", @@ -341825,7 +329160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.376Z", @@ -341852,7 +329186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.376Z", @@ -341879,7 +329212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.376Z", @@ -341906,7 +329238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.376Z", @@ -341933,7 +329264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.376Z", @@ -341960,7 +329290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.376Z", @@ -341987,7 +329316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.376Z", @@ -342014,7 +329342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.376Z", @@ -342041,7 +329368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.376Z", @@ -342068,7 +329394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.376Z", @@ -342095,7 +329420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.376Z", @@ -342122,7 +329446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.376Z", @@ -342149,7 +329472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.376Z", @@ -342176,7 +329498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.376Z", @@ -342203,7 +329524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.376Z", @@ -342230,7 +329550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342257,7 +329576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342284,7 +329602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342311,7 +329628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342338,7 +329654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342365,7 +329680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342392,7 +329706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342419,7 +329732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342446,7 +329758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342473,7 +329784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342500,7 +329810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342527,7 +329836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342554,7 +329862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342581,7 +329888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342608,7 +329914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342635,7 +329940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342662,7 +329966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342689,7 +329992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342716,7 +330018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342743,7 +330044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342770,7 +330070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342797,7 +330096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342824,7 +330122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342851,7 +330148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342878,7 +330174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342905,7 +330200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342932,7 +330226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.377Z", @@ -342959,7 +330252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -342986,7 +330278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343013,7 +330304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343040,7 +330330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343067,7 +330356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343094,7 +330382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343121,7 +330408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343148,7 +330434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343175,7 +330460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343202,7 +330486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343229,7 +330512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343256,7 +330538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343283,7 +330564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343310,7 +330590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343337,7 +330616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343364,7 +330642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343391,7 +330668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343418,7 +330694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343445,7 +330720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343472,7 +330746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343499,7 +330772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343526,7 +330798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343553,7 +330824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343580,7 +330850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343607,7 +330876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343634,7 +330902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343661,7 +330928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343688,7 +330954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343715,7 +330980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343742,7 +331006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343769,7 +331032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343796,7 +331058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343823,7 +331084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.378Z", @@ -343850,7 +331110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.379Z", @@ -343877,7 +331136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.379Z", @@ -343904,7 +331162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.379Z", @@ -343931,7 +331188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.379Z", @@ -343958,7 +331214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.379Z", @@ -343985,7 +331240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.379Z", @@ -344012,7 +331266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.379Z", @@ -344039,7 +331292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.379Z", @@ -344066,7 +331318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.379Z", @@ -344093,7 +331344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.379Z", @@ -344120,7 +331370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.379Z", @@ -344147,7 +331396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:43.379Z", @@ -344172,7 +331420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.288Z", @@ -344199,7 +331446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344226,7 +331472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344253,7 +331498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344280,7 +331524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344307,7 +331550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344334,7 +331576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344361,7 +331602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344388,7 +331628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344415,7 +331654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344442,7 +331680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344469,7 +331706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344496,7 +331732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344523,7 +331758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344550,7 +331784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344577,7 +331810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344604,7 +331836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344631,7 +331862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344658,7 +331888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344685,7 +331914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344712,7 +331940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344739,7 +331966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344766,7 +331992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344793,7 +332018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344820,7 +332044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344847,7 +332070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344874,7 +332096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344901,7 +332122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344928,7 +332148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344955,7 +332174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -344982,7 +332200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -345009,7 +332226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -345036,7 +332252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -345063,7 +332278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -345090,7 +332304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -345117,7 +332330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -345144,7 +332356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.321Z", @@ -345171,7 +332382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.322Z", @@ -345198,7 +332408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.322Z", @@ -345225,7 +332434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.322Z", @@ -345252,7 +332460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.322Z", @@ -345279,7 +332486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.322Z", @@ -345306,7 +332512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.322Z", @@ -345333,7 +332538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.322Z", @@ -345360,7 +332564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.328Z", @@ -345387,7 +332590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.328Z", @@ -345414,7 +332616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.328Z", @@ -345441,7 +332642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.328Z", @@ -345468,7 +332668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -345495,7 +332694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -345522,7 +332720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -345549,7 +332746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -345576,7 +332772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -345603,7 +332798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -345630,7 +332824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -345657,7 +332850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -345684,7 +332876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -345711,7 +332902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -345738,7 +332928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -345765,7 +332954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -345792,7 +332980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -345819,7 +333006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -345846,7 +333032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -345873,7 +333058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -345900,7 +333084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -345927,7 +333110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -345954,7 +333136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -345981,7 +333162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346008,7 +333188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346035,7 +333214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346062,7 +333240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346089,7 +333266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346116,7 +333292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346143,7 +333318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346170,7 +333344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346197,7 +333370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346224,7 +333396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346251,7 +333422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346278,7 +333448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346305,7 +333474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346332,7 +333500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346359,7 +333526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346386,7 +333552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346413,7 +333578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346440,7 +333604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346467,7 +333630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346494,7 +333656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346521,7 +333682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346548,7 +333708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346575,7 +333734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346602,7 +333760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.329Z", @@ -346629,7 +333786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.330Z", @@ -346656,7 +333812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.330Z", @@ -346683,7 +333838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.330Z", @@ -346710,7 +333864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.330Z", @@ -346737,7 +333890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.330Z", @@ -346764,7 +333916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.330Z", @@ -346791,7 +333942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.330Z", @@ -346818,7 +333968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.330Z", @@ -346845,7 +333994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.330Z", @@ -346872,7 +334020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.330Z", @@ -346899,7 +334046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.330Z", @@ -346926,7 +334072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.330Z", @@ -346953,7 +334098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.330Z", @@ -346980,7 +334124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.330Z", @@ -347007,7 +334150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:54:49.330Z", @@ -347032,7 +334174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.305Z", @@ -347059,7 +334200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.556Z", @@ -347086,7 +334226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.556Z", @@ -347113,7 +334252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.556Z", @@ -347140,7 +334278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.556Z", @@ -347167,7 +334304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.556Z", @@ -347194,7 +334330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.556Z", @@ -347221,7 +334356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.557Z", @@ -347248,7 +334382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.557Z", @@ -347275,7 +334408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.557Z", @@ -347302,7 +334434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.557Z", @@ -347329,7 +334460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.557Z", @@ -347356,7 +334486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.557Z", @@ -347383,7 +334512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.557Z", @@ -347410,7 +334538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.557Z", @@ -347437,7 +334564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.557Z", @@ -347464,7 +334590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.557Z", @@ -347491,7 +334616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.557Z", @@ -347518,7 +334642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -347545,7 +334668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -347572,7 +334694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -347599,7 +334720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -347626,7 +334746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -347653,7 +334772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -347680,7 +334798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -347707,7 +334824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -347734,7 +334850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -347761,7 +334876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -347788,7 +334902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -347815,7 +334928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -347842,7 +334954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -347869,7 +334980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -347896,7 +335006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -347923,7 +335032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -347950,7 +335058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -347977,7 +335084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -348004,7 +335110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -348031,7 +335136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -348058,7 +335162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -348085,7 +335188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -348112,7 +335214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -348139,7 +335240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -348166,7 +335266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -348193,7 +335292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -348220,7 +335318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.558Z", @@ -348247,7 +335344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.559Z", @@ -348274,7 +335370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.559Z", @@ -348301,7 +335396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.559Z", @@ -348328,7 +335422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.559Z", @@ -348355,7 +335448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.559Z", @@ -348382,7 +335474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.559Z", @@ -348409,7 +335500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.559Z", @@ -348436,7 +335526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.559Z", @@ -348463,7 +335552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.559Z", @@ -348490,7 +335578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.559Z", @@ -348517,7 +335604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.559Z", @@ -348544,7 +335630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.559Z", @@ -348571,7 +335656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.559Z", @@ -348598,7 +335682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.559Z", @@ -348625,7 +335708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.559Z", @@ -348652,7 +335734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.559Z", @@ -348679,7 +335760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.559Z", @@ -348706,7 +335786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.559Z", @@ -348733,7 +335812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.559Z", @@ -348760,7 +335838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.560Z", @@ -348787,7 +335864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.560Z", @@ -348814,7 +335890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.560Z", @@ -348841,7 +335916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.560Z", @@ -348868,7 +335942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.560Z", @@ -348895,7 +335968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.560Z", @@ -348922,7 +335994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.560Z", @@ -348949,7 +336020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.560Z", @@ -348976,7 +336046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.560Z", @@ -349003,7 +336072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.560Z", @@ -349030,7 +336098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.560Z", @@ -349057,7 +336124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.562Z", @@ -349084,7 +336150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.562Z", @@ -349111,7 +336176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.562Z", @@ -349138,7 +336202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.562Z", @@ -349165,7 +336228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.562Z", @@ -349192,7 +336254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349219,7 +336280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349246,7 +336306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349273,7 +336332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349300,7 +336358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349327,7 +336384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349354,7 +336410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349381,7 +336436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349408,7 +336462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349435,7 +336488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349462,7 +336514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349489,7 +336540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349516,7 +336566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349543,7 +336592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349570,7 +336618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349597,7 +336644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349624,7 +336670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349651,7 +336696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349678,7 +336722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349705,7 +336748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349732,7 +336774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349759,7 +336800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349786,7 +336826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349813,7 +336852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349840,7 +336878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349867,7 +336904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349894,7 +336930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.563Z", @@ -349921,7 +336956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -349948,7 +336982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -349975,7 +337008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350002,7 +337034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350029,7 +337060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350056,7 +337086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350083,7 +337112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350110,7 +337138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350137,7 +337164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350164,7 +337190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350191,7 +337216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350218,7 +337242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350245,7 +337268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350272,7 +337294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350299,7 +337320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350326,7 +337346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350353,7 +337372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350380,7 +337398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350407,7 +337424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350434,7 +337450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350461,7 +337476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350488,7 +337502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350515,7 +337528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350542,7 +337554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350569,7 +337580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350596,7 +337606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350623,7 +337632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350650,7 +337658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350677,7 +337684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350704,7 +337710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350731,7 +337736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350758,7 +337762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350785,7 +337788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.564Z", @@ -350812,7 +337814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -350839,7 +337840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -350866,7 +337866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -350893,7 +337892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -350920,7 +337918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -350947,7 +337944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -350974,7 +337970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -351001,7 +337996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -351028,7 +338022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -351055,7 +338048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -351082,7 +338074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -351109,7 +338100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -351136,7 +338126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -351163,7 +338152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -351190,7 +338178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -351217,7 +338204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -351244,7 +338230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -351271,7 +338256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -351298,7 +338282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -351325,7 +338308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -351352,7 +338334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -351379,7 +338360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -351406,7 +338386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -351433,7 +338412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -351460,7 +338438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -351487,7 +338464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -351514,7 +338490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -351541,7 +338516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.565Z", @@ -351568,7 +338542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -351595,7 +338568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -351622,7 +338594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -351649,7 +338620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -351676,7 +338646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -351703,7 +338672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -351730,7 +338698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -351757,7 +338724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -351784,7 +338750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -351811,7 +338776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -351838,7 +338802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -351865,7 +338828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -351892,7 +338854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -351919,7 +338880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -351946,7 +338906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -351973,7 +338932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -352000,7 +338958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -352027,7 +338984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -352054,7 +339010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -352081,7 +339036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -352108,7 +339062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -352135,7 +339088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -352162,7 +339114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -352189,7 +339140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -352216,7 +339166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -352243,7 +339192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -352270,7 +339218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -352297,7 +339244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -352324,7 +339270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.566Z", @@ -352351,7 +339296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352378,7 +339322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352405,7 +339348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352432,7 +339374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352459,7 +339400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352486,7 +339426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352513,7 +339452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352540,7 +339478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352567,7 +339504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352594,7 +339530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352621,7 +339556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352648,7 +339582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352675,7 +339608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352702,7 +339634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352729,7 +339660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352756,7 +339686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352783,7 +339712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352810,7 +339738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352837,7 +339764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352864,7 +339790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352891,7 +339816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352918,7 +339842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352945,7 +339868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352972,7 +339894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -352999,7 +339920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -353026,7 +339946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -353053,7 +339972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.567Z", @@ -353080,7 +339998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353107,7 +340024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353134,7 +340050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353161,7 +340076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353188,7 +340102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353215,7 +340128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353242,7 +340154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353269,7 +340180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353296,7 +340206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353323,7 +340232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353350,7 +340258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353377,7 +340284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353404,7 +340310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353431,7 +340336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353458,7 +340362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353485,7 +340388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353512,7 +340414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353539,7 +340440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353566,7 +340466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353593,7 +340492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353620,7 +340518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353647,7 +340544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353674,7 +340570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353701,7 +340596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353728,7 +340622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353755,7 +340648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353782,7 +340674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353809,7 +340700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353836,7 +340726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353863,7 +340752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353890,7 +340778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.568Z", @@ -353917,7 +340804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -353944,7 +340830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -353971,7 +340856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -353998,7 +340882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354025,7 +340908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354052,7 +340934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354079,7 +340960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354106,7 +340986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354133,7 +341012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354160,7 +341038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354187,7 +341064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354214,7 +341090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354241,7 +341116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354268,7 +341142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354295,7 +341168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354322,7 +341194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354349,7 +341220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354376,7 +341246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354403,7 +341272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354430,7 +341298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354457,7 +341324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354484,7 +341350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354511,7 +341376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354538,7 +341402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354565,7 +341428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354592,7 +341454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354619,7 +341480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.569Z", @@ -354646,7 +341506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -354673,7 +341532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -354700,7 +341558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -354727,7 +341584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -354754,7 +341610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -354781,7 +341636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -354808,7 +341662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -354835,7 +341688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -354862,7 +341714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -354889,7 +341740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -354916,7 +341766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -354943,7 +341792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -354970,7 +341818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -354997,7 +341844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -355024,7 +341870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -355051,7 +341896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -355078,7 +341922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -355105,7 +341948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -355132,7 +341974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -355159,7 +342000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -355186,7 +342026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -355213,7 +342052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -355240,7 +342078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -355267,7 +342104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -355294,7 +342130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -355321,7 +342156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -355348,7 +342182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -355375,7 +342208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -355402,7 +342234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -355429,7 +342260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.570Z", @@ -355456,7 +342286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -355483,7 +342312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -355510,7 +342338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -355537,7 +342364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -355564,7 +342390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -355591,7 +342416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -355618,7 +342442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -355645,7 +342468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -355672,7 +342494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -355699,7 +342520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -355726,7 +342546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -355753,7 +342572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -355780,7 +342598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -355807,7 +342624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -355834,7 +342650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -355861,7 +342676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -355888,7 +342702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -355915,7 +342728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -355942,7 +342754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -355969,7 +342780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -355996,7 +342806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -356023,7 +342832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -356050,7 +342858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -356077,7 +342884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -356104,7 +342910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -356131,7 +342936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -356158,7 +342962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -356185,7 +342988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -356212,7 +343014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -356239,7 +343040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -356266,7 +343066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -356293,7 +343092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -356320,7 +343118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.571Z", @@ -356347,7 +343144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356374,7 +343170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356401,7 +343196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356428,7 +343222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356455,7 +343248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356482,7 +343274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356509,7 +343300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356536,7 +343326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356563,7 +343352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356590,7 +343378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356617,7 +343404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356644,7 +343430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356671,7 +343456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356698,7 +343482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356725,7 +343508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356752,7 +343534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356779,7 +343560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356806,7 +343586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356833,7 +343612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356860,7 +343638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356887,7 +343664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356914,7 +343690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356941,7 +343716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356968,7 +343742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -356995,7 +343768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -357022,7 +343794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -357049,7 +343820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -357076,7 +343846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -357103,7 +343872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -357130,7 +343898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -357157,7 +343924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -357184,7 +343950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.572Z", @@ -357211,7 +343976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357238,7 +344002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357265,7 +344028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357292,7 +344054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357319,7 +344080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357346,7 +344106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357373,7 +344132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357400,7 +344158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357427,7 +344184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357454,7 +344210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357481,7 +344236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357508,7 +344262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357535,7 +344288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357562,7 +344314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357589,7 +344340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357616,7 +344366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357643,7 +344392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357670,7 +344418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357697,7 +344444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357724,7 +344470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357751,7 +344496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357778,7 +344522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357805,7 +344548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357832,7 +344574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357859,7 +344600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357886,7 +344626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357913,7 +344652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357940,7 +344678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357967,7 +344704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -357994,7 +344730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -358021,7 +344756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.573Z", @@ -358048,7 +344782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358075,7 +344808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358102,7 +344834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358129,7 +344860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358156,7 +344886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358183,7 +344912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358210,7 +344938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358237,7 +344964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358264,7 +344990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358291,7 +345016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358318,7 +345042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358345,7 +345068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358372,7 +345094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358399,7 +345120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358426,7 +345146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358453,7 +345172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358480,7 +345198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358507,7 +345224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358534,7 +345250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358561,7 +345276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358588,7 +345302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358615,7 +345328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358642,7 +345354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358669,7 +345380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358696,7 +345406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358723,7 +345432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358750,7 +345458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358777,7 +345484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358804,7 +345510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358831,7 +345536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358858,7 +345562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358885,7 +345588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358912,7 +345614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358939,7 +345640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.574Z", @@ -358966,7 +345666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -358993,7 +345692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359020,7 +345718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359047,7 +345744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359074,7 +345770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359101,7 +345796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359128,7 +345822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359155,7 +345848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359182,7 +345874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359209,7 +345900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359236,7 +345926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359263,7 +345952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359290,7 +345978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359317,7 +346004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359344,7 +346030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359371,7 +346056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359398,7 +346082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359425,7 +346108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359452,7 +346134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359479,7 +346160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359506,7 +346186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359533,7 +346212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359560,7 +346238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359587,7 +346264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359614,7 +346290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359641,7 +346316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.575Z", @@ -359668,7 +346342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -359695,7 +346368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -359722,7 +346394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -359749,7 +346420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -359776,7 +346446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -359803,7 +346472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -359830,7 +346498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -359857,7 +346524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -359884,7 +346550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -359911,7 +346576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -359938,7 +346602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -359965,7 +346628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -359992,7 +346654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -360019,7 +346680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -360046,7 +346706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -360073,7 +346732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -360100,7 +346758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -360127,7 +346784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -360154,7 +346810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -360181,7 +346836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -360208,7 +346862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -360235,7 +346888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -360262,7 +346914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -360289,7 +346940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -360316,7 +346966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -360343,7 +346992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.576Z", @@ -360370,7 +347018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.577Z", @@ -360397,7 +347044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.577Z", @@ -360424,7 +347070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.577Z", @@ -360451,7 +347096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.577Z", @@ -360478,7 +347122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.577Z", @@ -360505,7 +347148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.577Z", @@ -360532,7 +347174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.577Z", @@ -360559,7 +347200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.577Z", @@ -360586,7 +347226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.577Z", @@ -360613,7 +347252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.577Z", @@ -360640,7 +347278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.577Z", @@ -360667,7 +347304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.577Z", @@ -360694,7 +347330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.577Z", @@ -360721,7 +347356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.577Z", @@ -360748,7 +347382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.577Z", @@ -360775,7 +347408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.577Z", @@ -360802,7 +347434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.577Z", @@ -360829,7 +347460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.577Z", @@ -360856,7 +347486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.577Z", @@ -360883,7 +347512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.578Z", @@ -360910,7 +347538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.578Z", @@ -360937,7 +347564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.578Z", @@ -360964,7 +347590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.578Z", @@ -360991,7 +347616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.578Z", @@ -361018,7 +347642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.578Z", @@ -361045,7 +347668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.578Z", @@ -361072,7 +347694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.578Z", @@ -361099,7 +347720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.578Z", @@ -361126,7 +347746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.578Z", @@ -361153,7 +347772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.578Z", @@ -361180,7 +347798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:42.578Z", @@ -361205,7 +347822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.603Z", @@ -361232,7 +347848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.826Z", @@ -361259,7 +347874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.826Z", @@ -361286,7 +347900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.826Z", @@ -361313,7 +347926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.827Z", @@ -361340,7 +347952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.827Z", @@ -361367,7 +347978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.827Z", @@ -361394,7 +348004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.827Z", @@ -361421,7 +348030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.827Z", @@ -361448,7 +348056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.827Z", @@ -361475,7 +348082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.827Z", @@ -361502,7 +348108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.827Z", @@ -361529,7 +348134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.827Z", @@ -361556,7 +348160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.827Z", @@ -361583,7 +348186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.827Z", @@ -361610,7 +348212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.827Z", @@ -361637,7 +348238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.827Z", @@ -361664,7 +348264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.828Z", @@ -361691,7 +348290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.828Z", @@ -361718,7 +348316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.828Z", @@ -361745,7 +348342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.828Z", @@ -361772,7 +348368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.828Z", @@ -361799,7 +348394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.828Z", @@ -361826,7 +348420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.828Z", @@ -361853,7 +348446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.828Z", @@ -361880,7 +348472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.828Z", @@ -361907,7 +348498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.828Z", @@ -361934,7 +348524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.828Z", @@ -361961,7 +348550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.828Z", @@ -361988,7 +348576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.828Z", @@ -362015,7 +348602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.828Z", @@ -362042,7 +348628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.828Z", @@ -362069,7 +348654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.829Z", @@ -362096,7 +348680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.829Z", @@ -362123,7 +348706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.829Z", @@ -362150,7 +348732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.829Z", @@ -362177,7 +348758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.829Z", @@ -362204,7 +348784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.829Z", @@ -362231,7 +348810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.829Z", @@ -362258,7 +348836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.829Z", @@ -362285,7 +348862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.829Z", @@ -362312,7 +348888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.830Z", @@ -362339,7 +348914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.830Z", @@ -362366,7 +348940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.830Z", @@ -362393,7 +348966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.830Z", @@ -362420,7 +348992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.830Z", @@ -362447,7 +349018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.830Z", @@ -362474,7 +349044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.830Z", @@ -362501,7 +349070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.830Z", @@ -362528,7 +349096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.830Z", @@ -362555,7 +349122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.830Z", @@ -362582,7 +349148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.830Z", @@ -362609,7 +349174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.830Z", @@ -362636,7 +349200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.830Z", @@ -362663,7 +349226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.830Z", @@ -362690,7 +349252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.830Z", @@ -362717,7 +349278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.833Z", @@ -362744,7 +349304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.833Z", @@ -362771,7 +349330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.833Z", @@ -362798,7 +349356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.833Z", @@ -362825,7 +349382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.833Z", @@ -362852,7 +349408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.833Z", @@ -362879,7 +349434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.833Z", @@ -362906,7 +349460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.833Z", @@ -362933,7 +349486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.833Z", @@ -362960,7 +349512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.833Z", @@ -362987,7 +349538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.833Z", @@ -363014,7 +349564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.833Z", @@ -363041,7 +349590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.833Z", @@ -363068,7 +349616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.833Z", @@ -363095,7 +349642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.833Z", @@ -363122,7 +349668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.833Z", @@ -363149,7 +349694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.834Z", @@ -363176,7 +349720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.834Z", @@ -363203,7 +349746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.834Z", @@ -363230,7 +349772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.834Z", @@ -363257,7 +349798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.834Z", @@ -363284,7 +349824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.834Z", @@ -363311,7 +349850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.834Z", @@ -363338,7 +349876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.834Z", @@ -363365,7 +349902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.834Z", @@ -363392,7 +349928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.834Z", @@ -363419,7 +349954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.834Z", @@ -363446,7 +349980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.834Z", @@ -363473,7 +350006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.834Z", @@ -363500,7 +350032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.834Z", @@ -363527,7 +350058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.834Z", @@ -363554,7 +350084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.834Z", @@ -363581,7 +350110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.834Z", @@ -363608,7 +350136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.834Z", @@ -363635,7 +350162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.834Z", @@ -363662,7 +350188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.834Z", @@ -363689,7 +350214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -363716,7 +350240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -363743,7 +350266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -363770,7 +350292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -363797,7 +350318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -363824,7 +350344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -363851,7 +350370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -363878,7 +350396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -363905,7 +350422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -363932,7 +350448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -363959,7 +350474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -363986,7 +350500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -364013,7 +350526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -364040,7 +350552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -364067,7 +350578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -364094,7 +350604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -364121,7 +350630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -364148,7 +350656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -364175,7 +350682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -364202,7 +350708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -364229,7 +350734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -364256,7 +350760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -364283,7 +350786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -364310,7 +350812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.835Z", @@ -364337,7 +350838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364364,7 +350864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364391,7 +350890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364418,7 +350916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364445,7 +350942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364472,7 +350968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364499,7 +350994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364526,7 +351020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364553,7 +351046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364580,7 +351072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364607,7 +351098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364634,7 +351124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364661,7 +351150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364688,7 +351176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364715,7 +351202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364742,7 +351228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364769,7 +351254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364796,7 +351280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364823,7 +351306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364850,7 +351332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364877,7 +351358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364904,7 +351384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364931,7 +351410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364958,7 +351436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -364985,7 +351462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -365012,7 +351488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -365039,7 +351514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -365066,7 +351540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -365093,7 +351566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -365120,7 +351592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -365147,7 +351618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -365174,7 +351644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -365201,7 +351670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.836Z", @@ -365228,7 +351696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365255,7 +351722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365282,7 +351748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365309,7 +351774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365336,7 +351800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365363,7 +351826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365390,7 +351852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365417,7 +351878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365444,7 +351904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365471,7 +351930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365498,7 +351956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365525,7 +351982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365552,7 +352008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365579,7 +352034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365606,7 +352060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365633,7 +352086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365660,7 +352112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365687,7 +352138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365714,7 +352164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365741,7 +352190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365768,7 +352216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365795,7 +352242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365822,7 +352268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365849,7 +352294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.837Z", @@ -365876,7 +352320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.838Z", @@ -365903,7 +352346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.838Z", @@ -365930,7 +352372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.838Z", @@ -365957,7 +352398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.838Z", @@ -365984,7 +352424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.838Z", @@ -366011,7 +352450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.838Z", @@ -366038,7 +352476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.838Z", @@ -366065,7 +352502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.838Z", @@ -366092,7 +352528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.838Z", @@ -366119,7 +352554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.838Z", @@ -366146,7 +352580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.838Z", @@ -366173,7 +352606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.838Z", @@ -366200,7 +352632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.838Z", @@ -366227,7 +352658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.838Z", @@ -366254,7 +352684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.838Z", @@ -366281,7 +352710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.838Z", @@ -366308,7 +352736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.838Z", @@ -366335,7 +352762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.838Z", @@ -366362,7 +352788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.838Z", @@ -366389,7 +352814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.838Z", @@ -366416,7 +352840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.838Z", @@ -366443,7 +352866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.839Z", @@ -366470,7 +352892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.839Z", @@ -366497,7 +352918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.839Z", @@ -366524,7 +352944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.839Z", @@ -366551,7 +352970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.839Z", @@ -366578,7 +352996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.839Z", @@ -366605,7 +353022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.839Z", @@ -366632,7 +353048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.839Z", @@ -366659,7 +353074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.839Z", @@ -366686,7 +353100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.839Z", @@ -366713,7 +353126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.839Z", @@ -366740,7 +353152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.840Z", @@ -366767,7 +353178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.840Z", @@ -366794,7 +353204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.840Z", @@ -366821,7 +353230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.840Z", @@ -366848,7 +353256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.840Z", @@ -366875,7 +353282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.841Z", @@ -366902,7 +353308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.841Z", @@ -366929,7 +353334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.841Z", @@ -366956,7 +353360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.841Z", @@ -366983,7 +353386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.842Z", @@ -367010,7 +353412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.842Z", @@ -367037,7 +353438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.842Z", @@ -367064,7 +353464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.842Z", @@ -367091,7 +353490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.842Z", @@ -367118,7 +353516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.842Z", @@ -367145,7 +353542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.842Z", @@ -367172,7 +353568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.842Z", @@ -367199,7 +353594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.843Z", @@ -367226,7 +353620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.843Z", @@ -367253,7 +353646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.843Z", @@ -367280,7 +353672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.843Z", @@ -367307,7 +353698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.843Z", @@ -367334,7 +353724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.843Z", @@ -367361,7 +353750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.843Z", @@ -367388,7 +353776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.843Z", @@ -367415,7 +353802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.843Z", @@ -367442,7 +353828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.843Z", @@ -367469,7 +353854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.843Z", @@ -367496,7 +353880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.843Z", @@ -367523,7 +353906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.843Z", @@ -367550,7 +353932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.843Z", @@ -367577,7 +353958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.843Z", @@ -367604,7 +353984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.843Z", @@ -367631,7 +354010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.844Z", @@ -367658,7 +354036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.844Z", @@ -367685,7 +354062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.844Z", @@ -367712,7 +354088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.844Z", @@ -367739,7 +354114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.844Z", @@ -367766,7 +354140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.844Z", @@ -367793,7 +354166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.844Z", @@ -367820,7 +354192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.844Z", @@ -367847,7 +354218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.844Z", @@ -367874,7 +354244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.844Z", @@ -367901,7 +354270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.844Z", @@ -367928,7 +354296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.844Z", @@ -367955,7 +354322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.844Z", @@ -367982,7 +354348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.844Z", @@ -368009,7 +354374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.844Z", @@ -368036,7 +354400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.844Z", @@ -368063,7 +354426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.845Z", @@ -368090,7 +354452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.845Z", @@ -368117,7 +354478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.845Z", @@ -368144,7 +354504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.845Z", @@ -368171,7 +354530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.845Z", @@ -368198,7 +354556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.845Z", @@ -368225,7 +354582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.845Z", @@ -368252,7 +354608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.845Z", @@ -368279,7 +354634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.845Z", @@ -368306,7 +354660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.845Z", @@ -368333,7 +354686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.845Z", @@ -368360,7 +354712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.845Z", @@ -368387,7 +354738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.845Z", @@ -368414,7 +354764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.845Z", @@ -368441,7 +354790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.846Z", @@ -368468,7 +354816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.846Z", @@ -368495,7 +354842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.846Z", @@ -368522,7 +354868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.846Z", @@ -368549,7 +354894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.846Z", @@ -368576,7 +354920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.846Z", @@ -368603,7 +354946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.846Z", @@ -368630,7 +354972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.846Z", @@ -368657,7 +354998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.846Z", @@ -368684,7 +355024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.846Z", @@ -368711,7 +355050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.846Z", @@ -368738,7 +355076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.846Z", @@ -368765,7 +355102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.846Z", @@ -368792,7 +355128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.846Z", @@ -368819,7 +355154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.846Z", @@ -368846,7 +355180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.846Z", @@ -368873,7 +355206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.846Z", @@ -368900,7 +355232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.846Z", @@ -368927,7 +355258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.846Z", @@ -368954,7 +355284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.846Z", @@ -368981,7 +355310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.846Z", @@ -369008,7 +355336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.846Z", @@ -369035,7 +355362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.847Z", @@ -369062,7 +355388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.847Z", @@ -369089,7 +355414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.847Z", @@ -369116,7 +355440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.847Z", @@ -369143,7 +355466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.847Z", @@ -369170,7 +355492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.847Z", @@ -369197,7 +355518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.847Z", @@ -369224,7 +355544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.847Z", @@ -369251,7 +355570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.847Z", @@ -369278,7 +355596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.847Z", @@ -369305,7 +355622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.847Z", @@ -369332,7 +355648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.847Z", @@ -369359,7 +355674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.847Z", @@ -369386,7 +355700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.847Z", @@ -369413,7 +355726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.847Z", @@ -369440,7 +355752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.847Z", @@ -369467,7 +355778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.847Z", @@ -369494,7 +355804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.847Z", @@ -369521,7 +355830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.848Z", @@ -369548,7 +355856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.848Z", @@ -369575,7 +355882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.848Z", @@ -369602,7 +355908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.848Z", @@ -369629,7 +355934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.848Z", @@ -369656,7 +355960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.848Z", @@ -369683,7 +355986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.848Z", @@ -369710,7 +356012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.848Z", @@ -369737,7 +356038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.848Z", @@ -369764,7 +356064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.848Z", @@ -369791,7 +356090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.848Z", @@ -369818,7 +356116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.848Z", @@ -369845,7 +356142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.848Z", @@ -369872,7 +356168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.848Z", @@ -369899,7 +356194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.848Z", @@ -369926,7 +356220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.848Z", @@ -369953,7 +356246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.849Z", @@ -369980,7 +356272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.849Z", @@ -370007,7 +356298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.849Z", @@ -370034,7 +356324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.849Z", @@ -370061,7 +356350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.849Z", @@ -370088,7 +356376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.849Z", @@ -370115,7 +356402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.849Z", @@ -370142,7 +356428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.849Z", @@ -370169,7 +356454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.849Z", @@ -370196,7 +356480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.849Z", @@ -370223,7 +356506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.849Z", @@ -370250,7 +356532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.849Z", @@ -370277,7 +356558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.849Z", @@ -370304,7 +356584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.849Z", @@ -370331,7 +356610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.849Z", @@ -370358,7 +356636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.849Z", @@ -370385,7 +356662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.849Z", @@ -370412,7 +356688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.849Z", @@ -370439,7 +356714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -370466,7 +356740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -370493,7 +356766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -370520,7 +356792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -370547,7 +356818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -370574,7 +356844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -370601,7 +356870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -370628,7 +356896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -370655,7 +356922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -370682,7 +356948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -370709,7 +356974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -370736,7 +357000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -370763,7 +357026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -370790,7 +357052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -370817,7 +357078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -370844,7 +357104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -370871,7 +357130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -370898,7 +357156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -370925,7 +357182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -370952,7 +357208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -370979,7 +357234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -371006,7 +357260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -371033,7 +357286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -371060,7 +357312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.850Z", @@ -371087,7 +357338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371114,7 +357364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371141,7 +357390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371168,7 +357416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371195,7 +357442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371222,7 +357468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371249,7 +357494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371276,7 +357520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371303,7 +357546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371330,7 +357572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371357,7 +357598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371384,7 +357624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371411,7 +357650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371438,7 +357676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371465,7 +357702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371492,7 +357728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371519,7 +357754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371546,7 +357780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371573,7 +357806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371600,7 +357832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371627,7 +357858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371654,7 +357884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371681,7 +357910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371708,7 +357936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371735,7 +357962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371762,7 +357988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371789,7 +358014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371816,7 +358040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.851Z", @@ -371843,7 +358066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -371870,7 +358092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -371897,7 +358118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -371924,7 +358144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -371951,7 +358170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -371978,7 +358196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372005,7 +358222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372032,7 +358248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372059,7 +358274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372086,7 +358300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372113,7 +358326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372140,7 +358352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372167,7 +358378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372194,7 +358404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372221,7 +358430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372248,7 +358456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372275,7 +358482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372302,7 +358508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372329,7 +358534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372356,7 +358560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372383,7 +358586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372410,7 +358612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372437,7 +358638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372464,7 +358664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372491,7 +358690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372518,7 +358716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372545,7 +358742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372572,7 +358768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372599,7 +358794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372626,7 +358820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372653,7 +358846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372680,7 +358872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372707,7 +358898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372734,7 +358924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372761,7 +358950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.852Z", @@ -372788,7 +358976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -372815,7 +359002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -372842,7 +359028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -372869,7 +359054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -372896,7 +359080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -372923,7 +359106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -372950,7 +359132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -372977,7 +359158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -373004,7 +359184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -373031,7 +359210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -373058,7 +359236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -373085,7 +359262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -373112,7 +359288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -373139,7 +359314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -373166,7 +359340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -373193,7 +359366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -373220,7 +359392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -373247,7 +359418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -373274,7 +359444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -373301,7 +359470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -373328,7 +359496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -373355,7 +359522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -373382,7 +359548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -373409,7 +359574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -373436,7 +359600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -373463,7 +359626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -373490,7 +359652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -373517,7 +359678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.853Z", @@ -373544,7 +359704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -373571,7 +359730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -373598,7 +359756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -373625,7 +359782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -373652,7 +359808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -373679,7 +359834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -373706,7 +359860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -373733,7 +359886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -373760,7 +359912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -373787,7 +359938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -373814,7 +359964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -373841,7 +359990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -373868,7 +360016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -373895,7 +360042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -373922,7 +360068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -373949,7 +360094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -373976,7 +360120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -374003,7 +360146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -374030,7 +360172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -374057,7 +360198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -374084,7 +360224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -374111,7 +360250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -374138,7 +360276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -374165,7 +360302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -374192,7 +360328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -374219,7 +360354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -374246,7 +360380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.854Z", @@ -374273,7 +360406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.855Z", @@ -374300,7 +360432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.855Z", @@ -374327,7 +360458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.855Z", @@ -374354,7 +360484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.855Z", @@ -374381,7 +360510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.855Z", @@ -374408,7 +360536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.855Z", @@ -374435,7 +360562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.855Z", @@ -374462,7 +360588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.855Z", @@ -374489,7 +360614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.855Z", @@ -374516,7 +360640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.855Z", @@ -374543,7 +360666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.855Z", @@ -374570,7 +360692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.856Z", @@ -374597,7 +360718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.856Z", @@ -374624,7 +360744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.856Z", @@ -374651,7 +360770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.857Z", @@ -374678,7 +360796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.857Z", @@ -374705,7 +360822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.858Z", @@ -374732,7 +360848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.858Z", @@ -374759,7 +360874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.858Z", @@ -374786,7 +360900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.858Z", @@ -374813,7 +360926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.858Z", @@ -374840,7 +360952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.858Z", @@ -374867,7 +360978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.858Z", @@ -374894,7 +361004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.858Z", @@ -374921,7 +361030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.858Z", @@ -374948,7 +361056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.858Z", @@ -374975,7 +361082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.859Z", @@ -375002,7 +361108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.859Z", @@ -375029,7 +361134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.859Z", @@ -375056,7 +361160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.859Z", @@ -375083,7 +361186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.859Z", @@ -375110,7 +361212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.859Z", @@ -375137,7 +361238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.859Z", @@ -375164,7 +361264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.859Z", @@ -375191,7 +361290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.859Z", @@ -375218,7 +361316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.859Z", @@ -375245,7 +361342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.859Z", @@ -375272,7 +361368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.859Z", @@ -375299,7 +361394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.859Z", @@ -375326,7 +361420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.859Z", @@ -375353,7 +361446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:48.859Z", @@ -375378,7 +361470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.578Z", @@ -375405,7 +361496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.723Z", @@ -375432,7 +361522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.723Z", @@ -375459,7 +361548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.723Z", @@ -375486,7 +361574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.723Z", @@ -375513,7 +361600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.723Z", @@ -375540,7 +361626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.723Z", @@ -375567,7 +361652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.723Z", @@ -375594,7 +361678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.723Z", @@ -375621,7 +361704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.723Z", @@ -375648,7 +361730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.723Z", @@ -375675,7 +361756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.723Z", @@ -375702,7 +361782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.723Z", @@ -375729,7 +361808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.723Z", @@ -375756,7 +361834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.723Z", @@ -375783,7 +361860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.723Z", @@ -375810,7 +361886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.723Z", @@ -375837,7 +361912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.723Z", @@ -375864,7 +361938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.723Z", @@ -375891,7 +361964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.723Z", @@ -375918,7 +361990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.723Z", @@ -375945,7 +362016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.723Z", @@ -375972,7 +362042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.723Z", @@ -375999,7 +362068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.723Z", @@ -376026,7 +362094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376053,7 +362120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376080,7 +362146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376107,7 +362172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376134,7 +362198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376161,7 +362224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376188,7 +362250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376215,7 +362276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376242,7 +362302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376269,7 +362328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376296,7 +362354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376323,7 +362380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376350,7 +362406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376377,7 +362432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376404,7 +362458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376431,7 +362484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376458,7 +362510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376485,7 +362536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376512,7 +362562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376539,7 +362588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376566,7 +362614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376593,7 +362640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376620,7 +362666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376647,7 +362692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376674,7 +362718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376701,7 +362744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376728,7 +362770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376755,7 +362796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376782,7 +362822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376809,7 +362848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376836,7 +362874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376863,7 +362900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376890,7 +362926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376917,7 +362952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.724Z", @@ -376944,7 +362978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -376971,7 +363004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -376998,7 +363030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377025,7 +363056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377052,7 +363082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377079,7 +363108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377106,7 +363134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377133,7 +363160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377160,7 +363186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377187,7 +363212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377214,7 +363238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377241,7 +363264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377268,7 +363290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377295,7 +363316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377322,7 +363342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377349,7 +363368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377376,7 +363394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377403,7 +363420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377430,7 +363446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377457,7 +363472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377484,7 +363498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377511,7 +363524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377538,7 +363550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377565,7 +363576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377592,7 +363602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377619,7 +363628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377646,7 +363654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377673,7 +363680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377700,7 +363706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377727,7 +363732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377754,7 +363758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377781,7 +363784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377808,7 +363810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377835,7 +363836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377862,7 +363862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.725Z", @@ -377889,7 +363888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -377916,7 +363914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -377943,7 +363940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -377970,7 +363966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -377997,7 +363992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378024,7 +364018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378051,7 +364044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378078,7 +364070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378105,7 +364096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378132,7 +364122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378159,7 +364148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378186,7 +364174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378213,7 +364200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378240,7 +364226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378267,7 +364252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378294,7 +364278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378321,7 +364304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378348,7 +364330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378375,7 +364356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378402,7 +364382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378429,7 +364408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378456,7 +364434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378483,7 +364460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378510,7 +364486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378537,7 +364512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378564,7 +364538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378591,7 +364564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378618,7 +364590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378645,7 +364616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378672,7 +364642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378699,7 +364668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378726,7 +364694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378753,7 +364720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378780,7 +364746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378807,7 +364772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378834,7 +364798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378861,7 +364824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378888,7 +364850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378915,7 +364876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.726Z", @@ -378942,7 +364902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -378969,7 +364928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -378996,7 +364954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379023,7 +364980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379050,7 +365006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379077,7 +365032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379104,7 +365058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379131,7 +365084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379158,7 +365110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379185,7 +365136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379212,7 +365162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379239,7 +365188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379266,7 +365214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379293,7 +365240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379320,7 +365266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379347,7 +365292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379374,7 +365318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379401,7 +365344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379428,7 +365370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379455,7 +365396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379482,7 +365422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379509,7 +365448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379536,7 +365474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379563,7 +365500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379590,7 +365526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379617,7 +365552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379644,7 +365578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379671,7 +365604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379698,7 +365630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379725,7 +365656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379752,7 +365682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379779,7 +365708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379806,7 +365734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379833,7 +365760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379860,7 +365786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379887,7 +365812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379914,7 +365838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379941,7 +365864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379968,7 +365890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.727Z", @@ -379995,7 +365916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380022,7 +365942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380049,7 +365968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380076,7 +365994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380103,7 +366020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380130,7 +366046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380157,7 +366072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380184,7 +366098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380211,7 +366124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380238,7 +366150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380265,7 +366176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380292,7 +366202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380319,7 +366228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380346,7 +366254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380373,7 +366280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380400,7 +366306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380427,7 +366332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380454,7 +366358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380481,7 +366384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380508,7 +366410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380535,7 +366436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380562,7 +366462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380589,7 +366488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380616,7 +366514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380643,7 +366540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380670,7 +366566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380697,7 +366592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380724,7 +366618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380751,7 +366644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380778,7 +366670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380805,7 +366696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380832,7 +366722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380859,7 +366748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380886,7 +366774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380913,7 +366800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380940,7 +366826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380967,7 +366852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -380994,7 +366878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -381021,7 +366904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -381048,7 +366930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.728Z", @@ -381075,7 +366956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381102,7 +366982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381129,7 +367008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381156,7 +367034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381183,7 +367060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381210,7 +367086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381237,7 +367112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381264,7 +367138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381291,7 +367164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381318,7 +367190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381345,7 +367216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381372,7 +367242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381399,7 +367268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381426,7 +367294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381453,7 +367320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381480,7 +367346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381507,7 +367372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381534,7 +367398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381561,7 +367424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381588,7 +367450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381615,7 +367476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381642,7 +367502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381669,7 +367528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381696,7 +367554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381723,7 +367580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381750,7 +367606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381777,7 +367632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381804,7 +367658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381831,7 +367684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381858,7 +367710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381885,7 +367736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381912,7 +367762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381939,7 +367788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381966,7 +367814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -381993,7 +367840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -382020,7 +367866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -382047,7 +367892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -382074,7 +367918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -382101,7 +367944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -382128,7 +367970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -382155,7 +367996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -382182,7 +368022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.729Z", @@ -382209,7 +368048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382236,7 +368074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382263,7 +368100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382290,7 +368126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382317,7 +368152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382344,7 +368178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382371,7 +368204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382398,7 +368230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382425,7 +368256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382452,7 +368282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382479,7 +368308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382506,7 +368334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382533,7 +368360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382560,7 +368386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382587,7 +368412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382614,7 +368438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382641,7 +368464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382668,7 +368490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382695,7 +368516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382722,7 +368542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382749,7 +368568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382776,7 +368594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382803,7 +368620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382830,7 +368646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382857,7 +368672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382884,7 +368698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382911,7 +368724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382938,7 +368750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382965,7 +368776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -382992,7 +368802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -383019,7 +368828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -383046,7 +368854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -383073,7 +368880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -383100,7 +368906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -383127,7 +368932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -383154,7 +368958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -383181,7 +368984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -383208,7 +369010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -383235,7 +369036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -383262,7 +369062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.730Z", @@ -383289,7 +369088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383316,7 +369114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383343,7 +369140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383370,7 +369166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383397,7 +369192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383424,7 +369218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383451,7 +369244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383478,7 +369270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383505,7 +369296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383532,7 +369322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383559,7 +369348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383586,7 +369374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383613,7 +369400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383640,7 +369426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383667,7 +369452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383694,7 +369478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383721,7 +369504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383748,7 +369530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383775,7 +369556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383802,7 +369582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383829,7 +369608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383856,7 +369634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383883,7 +369660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383910,7 +369686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383937,7 +369712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383964,7 +369738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -383991,7 +369764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -384018,7 +369790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -384045,7 +369816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -384072,7 +369842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -384099,7 +369868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -384126,7 +369894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -384153,7 +369920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -384180,7 +369946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -384207,7 +369972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -384234,7 +369998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -384261,7 +370024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -384288,7 +370050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -384315,7 +370076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -384342,7 +370102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.731Z", @@ -384369,7 +370128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -384396,7 +370154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -384423,7 +370180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -384450,7 +370206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -384477,7 +370232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -384504,7 +370258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -384531,7 +370284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -384558,7 +370310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -384585,7 +370336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -384612,7 +370362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -384639,7 +370388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -384666,7 +370414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -384693,7 +370440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -384720,7 +370466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -384747,7 +370492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -384774,7 +370518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -384801,7 +370544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -384828,7 +370570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -384855,7 +370596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -384882,7 +370622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -384909,7 +370648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -384936,7 +370674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -384963,7 +370700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -384990,7 +370726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -385017,7 +370752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -385044,7 +370778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -385071,7 +370804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -385098,7 +370830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -385125,7 +370856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -385152,7 +370882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -385179,7 +370908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -385206,7 +370934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -385233,7 +370960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -385260,7 +370986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.732Z", @@ -385287,7 +371012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385314,7 +371038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385341,7 +371064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385368,7 +371090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385395,7 +371116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385422,7 +371142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385449,7 +371168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385476,7 +371194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385503,7 +371220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385530,7 +371246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385557,7 +371272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385584,7 +371298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385611,7 +371324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385638,7 +371350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385665,7 +371376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385692,7 +371402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385719,7 +371428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385746,7 +371454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385773,7 +371480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385800,7 +371506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385827,7 +371532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385854,7 +371558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385881,7 +371584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385908,7 +371610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385935,7 +371636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385962,7 +371662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -385989,7 +371688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -386016,7 +371714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -386043,7 +371740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -386070,7 +371766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -386097,7 +371792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -386124,7 +371818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -386151,7 +371844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -386178,7 +371870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -386205,7 +371896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.733Z", @@ -386232,7 +371922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386259,7 +371948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386286,7 +371974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386313,7 +372000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386340,7 +372026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386367,7 +372052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386394,7 +372078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386421,7 +372104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386448,7 +372130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386475,7 +372156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386502,7 +372182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386529,7 +372208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386556,7 +372234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386583,7 +372260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386610,7 +372286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386637,7 +372312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386664,7 +372338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386691,7 +372364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386718,7 +372390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386745,7 +372416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386772,7 +372442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386799,7 +372468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386826,7 +372494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386853,7 +372520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386880,7 +372546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386907,7 +372572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386934,7 +372598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386961,7 +372624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -386988,7 +372650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -387015,7 +372676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -387042,7 +372702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -387069,7 +372728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -387096,7 +372754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -387123,7 +372780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -387150,7 +372806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -387177,7 +372832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -387204,7 +372858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -387231,7 +372884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -387258,7 +372910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -387285,7 +372936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -387312,7 +372962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -387339,7 +372988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -387366,7 +373014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.734Z", @@ -387393,7 +373040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -387420,7 +373066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -387447,7 +373092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -387474,7 +373118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -387501,7 +373144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -387528,7 +373170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -387555,7 +373196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -387582,7 +373222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -387609,7 +373248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -387636,7 +373274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -387663,7 +373300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -387690,7 +373326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -387717,7 +373352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -387744,7 +373378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -387771,7 +373404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -387798,7 +373430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -387825,7 +373456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -387852,7 +373482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -387879,7 +373508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -387906,7 +373534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -387933,7 +373560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -387960,7 +373586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -387987,7 +373612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -388014,7 +373638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -388041,7 +373664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -388068,7 +373690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -388095,7 +373716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -388122,7 +373742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -388149,7 +373768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -388176,7 +373794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -388203,7 +373820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -388230,7 +373846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -388257,7 +373872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -388284,7 +373898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -388311,7 +373924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -388338,7 +373950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -388365,7 +373976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -388392,7 +374002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -388419,7 +374028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -388446,7 +374054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -388473,7 +374080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -388500,7 +374106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.735Z", @@ -388527,7 +374132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -388554,7 +374158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -388581,7 +374184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -388608,7 +374210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -388635,7 +374236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -388662,7 +374262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -388689,7 +374288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -388716,7 +374314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -388743,7 +374340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -388770,7 +374366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -388797,7 +374392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -388824,7 +374418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -388851,7 +374444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -388878,7 +374470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -388905,7 +374496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -388932,7 +374522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -388959,7 +374548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -388986,7 +374574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -389013,7 +374600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -389040,7 +374626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -389067,7 +374652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -389094,7 +374678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -389121,7 +374704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -389148,7 +374730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -389175,7 +374756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -389202,7 +374782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -389229,7 +374808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -389256,7 +374834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -389283,7 +374860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -389310,7 +374886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -389337,7 +374912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -389364,7 +374938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -389391,7 +374964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -389418,7 +374990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -389445,7 +375016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -389472,7 +375042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.736Z", @@ -389499,7 +375068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.737Z", @@ -389526,7 +375094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:56:53.737Z", @@ -389551,7 +375118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.367Z", @@ -389578,7 +375144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.517Z", @@ -389605,7 +375170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.517Z", @@ -389632,7 +375196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.518Z", @@ -389659,7 +375222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.518Z", @@ -389686,7 +375248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.518Z", @@ -389713,7 +375274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.518Z", @@ -389740,7 +375300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.518Z", @@ -389767,7 +375326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.518Z", @@ -389794,7 +375352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.518Z", @@ -389821,7 +375378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.518Z", @@ -389848,7 +375404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.518Z", @@ -389875,7 +375430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.518Z", @@ -389902,7 +375456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.518Z", @@ -389929,7 +375482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.518Z", @@ -389956,7 +375508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.518Z", @@ -389983,7 +375534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.518Z", @@ -390010,7 +375560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.518Z", @@ -390037,7 +375586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.518Z", @@ -390064,7 +375612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.518Z", @@ -390091,7 +375638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.519Z", @@ -390118,7 +375664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.519Z", @@ -390145,7 +375690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.519Z", @@ -390172,7 +375716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.519Z", @@ -390199,7 +375742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.519Z", @@ -390226,7 +375768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.519Z", @@ -390253,7 +375794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.519Z", @@ -390280,7 +375820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.519Z", @@ -390307,7 +375846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.519Z", @@ -390334,7 +375872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.519Z", @@ -390361,7 +375898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.519Z", @@ -390388,7 +375924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.519Z", @@ -390415,7 +375950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.519Z", @@ -390442,7 +375976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.519Z", @@ -390469,7 +376002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.519Z", @@ -390496,7 +376028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.520Z", @@ -390523,7 +376054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.520Z", @@ -390550,7 +376080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.520Z", @@ -390577,7 +376106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.520Z", @@ -390604,7 +376132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.520Z", @@ -390631,7 +376158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.520Z", @@ -390658,7 +376184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.520Z", @@ -390685,7 +376210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.520Z", @@ -390712,7 +376236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.520Z", @@ -390739,7 +376262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.520Z", @@ -390766,7 +376288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.520Z", @@ -390793,7 +376314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.520Z", @@ -390820,7 +376340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.520Z", @@ -390847,7 +376366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.520Z", @@ -390874,7 +376392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.520Z", @@ -390901,7 +376418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.521Z", @@ -390928,7 +376444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.521Z", @@ -390955,7 +376470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.521Z", @@ -390982,7 +376496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.521Z", @@ -391009,7 +376522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.521Z", @@ -391036,7 +376548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.521Z", @@ -391063,7 +376574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.521Z", @@ -391090,7 +376600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.521Z", @@ -391117,7 +376626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.522Z", @@ -391144,7 +376652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.522Z", @@ -391171,7 +376678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.522Z", @@ -391198,7 +376704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.522Z", @@ -391225,7 +376730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.522Z", @@ -391252,7 +376756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.523Z", @@ -391279,7 +376782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.523Z", @@ -391306,7 +376808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.523Z", @@ -391333,7 +376834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.523Z", @@ -391360,7 +376860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.523Z", @@ -391387,7 +376886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.523Z", @@ -391414,7 +376912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.523Z", @@ -391441,7 +376938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.523Z", @@ -391468,7 +376964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.523Z", @@ -391495,7 +376990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.523Z", @@ -391522,7 +377016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.523Z", @@ -391549,7 +377042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.523Z", @@ -391576,7 +377068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.523Z", @@ -391603,7 +377094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.523Z", @@ -391630,7 +377120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.523Z", @@ -391657,7 +377146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.523Z", @@ -391684,7 +377172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.524Z", @@ -391711,7 +377198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.524Z", @@ -391738,7 +377224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.524Z", @@ -391765,7 +377250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.524Z", @@ -391792,7 +377276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.524Z", @@ -391819,7 +377302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.524Z", @@ -391846,7 +377328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.524Z", @@ -391873,7 +377354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.524Z", @@ -391900,7 +377380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.524Z", @@ -391927,7 +377406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.524Z", @@ -391954,7 +377432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.524Z", @@ -391981,7 +377458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.524Z", @@ -392008,7 +377484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.524Z", @@ -392035,7 +377510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.524Z", @@ -392062,7 +377536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.525Z", @@ -392089,7 +377562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.525Z", @@ -392116,7 +377588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.525Z", @@ -392143,7 +377614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.525Z", @@ -392170,7 +377640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.525Z", @@ -392197,7 +377666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.525Z", @@ -392224,7 +377692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.525Z", @@ -392251,7 +377718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.525Z", @@ -392278,7 +377744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.525Z", @@ -392305,7 +377770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.525Z", @@ -392332,7 +377796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.525Z", @@ -392359,7 +377822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.525Z", @@ -392386,7 +377848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:24.525Z", @@ -392411,7 +377872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.655Z", @@ -392438,7 +377898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.717Z", @@ -392465,7 +377924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.717Z", @@ -392492,7 +377950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.717Z", @@ -392519,7 +377976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.717Z", @@ -392546,7 +378002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.717Z", @@ -392573,7 +378028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.717Z", @@ -392600,7 +378054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -392627,7 +378080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -392654,7 +378106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -392681,7 +378132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -392708,7 +378158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -392735,7 +378184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -392762,7 +378210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -392789,7 +378236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -392816,7 +378262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -392843,7 +378288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -392870,7 +378314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -392897,7 +378340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -392924,7 +378366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -392951,7 +378392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -392978,7 +378418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -393005,7 +378444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -393032,7 +378470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -393059,7 +378496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -393086,7 +378522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -393113,7 +378548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -393140,7 +378574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -393167,7 +378600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -393194,7 +378626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -393221,7 +378652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -393248,7 +378678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -393275,7 +378704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -393302,7 +378730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -393329,7 +378756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.718Z", @@ -393356,7 +378782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.719Z", @@ -393383,7 +378808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.719Z", @@ -393410,7 +378834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.719Z", @@ -393437,7 +378860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.719Z", @@ -393464,7 +378886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.719Z", @@ -393491,7 +378912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.719Z", @@ -393518,7 +378938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.719Z", @@ -393545,7 +378964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.719Z", @@ -393572,7 +378990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.719Z", @@ -393599,7 +379016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.719Z", @@ -393626,7 +379042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.719Z", @@ -393653,7 +379068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.719Z", @@ -393680,7 +379094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.719Z", @@ -393707,7 +379120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.719Z", @@ -393734,7 +379146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.719Z", @@ -393761,7 +379172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.720Z", @@ -393788,7 +379198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.720Z", @@ -393815,7 +379224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.720Z", @@ -393842,7 +379250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.720Z", @@ -393869,7 +379276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.720Z", @@ -393896,7 +379302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.720Z", @@ -393923,7 +379328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.720Z", @@ -393950,7 +379354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.720Z", @@ -393977,7 +379380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.720Z", @@ -394004,7 +379406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.720Z", @@ -394031,7 +379432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.720Z", @@ -394058,7 +379458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.720Z", @@ -394085,7 +379484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.720Z", @@ -394112,7 +379510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.720Z", @@ -394139,7 +379536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.721Z", @@ -394166,7 +379562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.721Z", @@ -394193,7 +379588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.721Z", @@ -394220,7 +379614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.721Z", @@ -394247,7 +379640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.721Z", @@ -394274,7 +379666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.721Z", @@ -394301,7 +379692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.721Z", @@ -394328,7 +379718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.721Z", @@ -394355,7 +379744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.721Z", @@ -394382,7 +379770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.721Z", @@ -394409,7 +379796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.722Z", @@ -394436,7 +379822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.722Z", @@ -394463,7 +379848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.722Z", @@ -394490,7 +379874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.722Z", @@ -394517,7 +379900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.722Z", @@ -394544,7 +379926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.722Z", @@ -394571,7 +379952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.722Z", @@ -394598,7 +379978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.722Z", @@ -394625,7 +380004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.722Z", @@ -394652,7 +380030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.722Z", @@ -394679,7 +380056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.722Z", @@ -394706,7 +380082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.722Z", @@ -394733,7 +380108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.722Z", @@ -394760,7 +380134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.722Z", @@ -394787,7 +380160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.722Z", @@ -394814,7 +380186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.722Z", @@ -394841,7 +380212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.722Z", @@ -394868,7 +380238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.722Z", @@ -394895,7 +380264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.722Z", @@ -394922,7 +380290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.722Z", @@ -394949,7 +380316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.723Z", @@ -394976,7 +380342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.723Z", @@ -395003,7 +380368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.723Z", @@ -395030,7 +380394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.723Z", @@ -395057,7 +380420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.723Z", @@ -395084,7 +380446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.723Z", @@ -395111,7 +380472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.723Z", @@ -395138,7 +380498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.723Z", @@ -395165,7 +380524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.723Z", @@ -395192,7 +380550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.723Z", @@ -395219,7 +380576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.723Z", @@ -395246,7 +380602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:28.723Z", @@ -395271,7 +380626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.404Z", @@ -395298,7 +380652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.437Z", @@ -395325,7 +380678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.437Z", @@ -395352,7 +380704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.437Z", @@ -395379,7 +380730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.437Z", @@ -395406,7 +380756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.437Z", @@ -395433,7 +380782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.437Z", @@ -395460,7 +380808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.437Z", @@ -395487,7 +380834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.437Z", @@ -395514,7 +380860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.437Z", @@ -395541,7 +380886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -395568,7 +380912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -395595,7 +380938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -395622,7 +380964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -395649,7 +380990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -395676,7 +381016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -395703,7 +381042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -395730,7 +381068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -395757,7 +381094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -395784,7 +381120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -395811,7 +381146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -395838,7 +381172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -395865,7 +381198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -395892,7 +381224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -395919,7 +381250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -395946,7 +381276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -395973,7 +381302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396000,7 +381328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396027,7 +381354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396054,7 +381380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396081,7 +381406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396108,7 +381432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396135,7 +381458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396162,7 +381484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396189,7 +381510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396216,7 +381536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396243,7 +381562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396270,7 +381588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396297,7 +381614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396324,7 +381640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396351,7 +381666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396378,7 +381692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396405,7 +381718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396432,7 +381744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396459,7 +381770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396486,7 +381796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396513,7 +381822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396540,7 +381848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396567,7 +381874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396594,7 +381900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396621,7 +381926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396648,7 +381952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396675,7 +381978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.438Z", @@ -396702,7 +382004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -396729,7 +382030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -396756,7 +382056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -396783,7 +382082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -396810,7 +382108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -396837,7 +382134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -396864,7 +382160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -396891,7 +382186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -396918,7 +382212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -396945,7 +382238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -396972,7 +382264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -396999,7 +382290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397026,7 +382316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397053,7 +382342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397080,7 +382368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397107,7 +382394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397134,7 +382420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397161,7 +382446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397188,7 +382472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397215,7 +382498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397242,7 +382524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397269,7 +382550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397296,7 +382576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397323,7 +382602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397350,7 +382628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397377,7 +382654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397404,7 +382680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397431,7 +382706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397458,7 +382732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397485,7 +382758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397512,7 +382784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397539,7 +382810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397566,7 +382836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397593,7 +382862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397620,7 +382888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397647,7 +382914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397674,7 +382940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397701,7 +382966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397728,7 +382992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.439Z", @@ -397755,7 +383018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.440Z", @@ -397782,7 +383044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.440Z", @@ -397809,7 +383070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.440Z", @@ -397836,7 +383096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.440Z", @@ -397863,7 +383122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.440Z", @@ -397890,7 +383148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.440Z", @@ -397917,7 +383174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.440Z", @@ -397944,7 +383200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.440Z", @@ -397971,7 +383226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.440Z", @@ -397998,7 +383252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.440Z", @@ -398025,7 +383278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.440Z", @@ -398052,7 +383304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.440Z", @@ -398079,7 +383330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.440Z", @@ -398106,7 +383356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T17:59:32.440Z", @@ -398131,7 +383380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.637Z", @@ -398158,7 +383406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.809Z", @@ -398185,7 +383432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.809Z", @@ -398212,7 +383458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.809Z", @@ -398239,7 +383484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.809Z", @@ -398266,7 +383510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.809Z", @@ -398293,7 +383536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.809Z", @@ -398320,7 +383562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398347,7 +383588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398374,7 +383614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398401,7 +383640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398428,7 +383666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398455,7 +383692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398482,7 +383718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398509,7 +383744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398536,7 +383770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398563,7 +383796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398590,7 +383822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398617,7 +383848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398644,7 +383874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398671,7 +383900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398698,7 +383926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398725,7 +383952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398752,7 +383978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398779,7 +384004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398806,7 +384030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398833,7 +384056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398860,7 +384082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398887,7 +384108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398914,7 +384134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398941,7 +384160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398968,7 +384186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -398995,7 +384212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -399022,7 +384238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -399049,7 +384264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -399076,7 +384290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -399103,7 +384316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -399130,7 +384342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -399157,7 +384368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.810Z", @@ -399184,7 +384394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399211,7 +384420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399238,7 +384446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399265,7 +384472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399292,7 +384498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399319,7 +384524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399346,7 +384550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399373,7 +384576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399400,7 +384602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399427,7 +384628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399454,7 +384654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399481,7 +384680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399508,7 +384706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399535,7 +384732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399562,7 +384758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399589,7 +384784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399616,7 +384810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399643,7 +384836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399670,7 +384862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399697,7 +384888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399724,7 +384914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399751,7 +384940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399778,7 +384966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399805,7 +384992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399832,7 +385018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399859,7 +385044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399886,7 +385070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399913,7 +385096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399940,7 +385122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399967,7 +385148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -399994,7 +385174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -400021,7 +385200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -400048,7 +385226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -400075,7 +385252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.811Z", @@ -400102,7 +385278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400129,7 +385304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400156,7 +385330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400183,7 +385356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400210,7 +385382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400237,7 +385408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400264,7 +385434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400291,7 +385460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400318,7 +385486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400345,7 +385512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400372,7 +385538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400399,7 +385564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400426,7 +385590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400453,7 +385616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400480,7 +385642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400507,7 +385668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400534,7 +385694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400561,7 +385720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400588,7 +385746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400615,7 +385772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400642,7 +385798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400669,7 +385824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400696,7 +385850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400723,7 +385876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400750,7 +385902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400777,7 +385928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400804,7 +385954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400831,7 +385980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400858,7 +386006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400885,7 +386032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400912,7 +386058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400939,7 +386084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400966,7 +386110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.812Z", @@ -400993,7 +386136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401020,7 +386162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401047,7 +386188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401074,7 +386214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401101,7 +386240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401128,7 +386266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401155,7 +386292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401182,7 +386318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401209,7 +386344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401236,7 +386370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401263,7 +386396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401290,7 +386422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401317,7 +386448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401344,7 +386474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401371,7 +386500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401398,7 +386526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401425,7 +386552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401452,7 +386578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401479,7 +386604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401506,7 +386630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401533,7 +386656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401560,7 +386682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401587,7 +386708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401614,7 +386734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401641,7 +386760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401668,7 +386786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401695,7 +386812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401722,7 +386838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401749,7 +386864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401776,7 +386890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401803,7 +386916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401830,7 +386942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401857,7 +386968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401884,7 +386994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.813Z", @@ -401911,7 +387020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -401938,7 +387046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -401965,7 +387072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -401992,7 +387098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402019,7 +387124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402046,7 +387150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402073,7 +387176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402100,7 +387202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402127,7 +387228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402154,7 +387254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402181,7 +387280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402208,7 +387306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402235,7 +387332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402262,7 +387358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402289,7 +387384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402316,7 +387410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402343,7 +387436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402370,7 +387462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402397,7 +387488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402424,7 +387514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402451,7 +387540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402478,7 +387566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402505,7 +387592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402532,7 +387618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402559,7 +387644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402586,7 +387670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402613,7 +387696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402640,7 +387722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402667,7 +387748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.814Z", @@ -402694,7 +387774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -402721,7 +387800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -402748,7 +387826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -402775,7 +387852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -402802,7 +387878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -402829,7 +387904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -402856,7 +387930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -402883,7 +387956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -402910,7 +387982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -402937,7 +388008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -402964,7 +388034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -402991,7 +388060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -403018,7 +388086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -403045,7 +388112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -403072,7 +388138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -403099,7 +388164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -403126,7 +388190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -403153,7 +388216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -403180,7 +388242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -403207,7 +388268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -403234,7 +388294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -403261,7 +388320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -403288,7 +388346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -403315,7 +388372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -403342,7 +388398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -403369,7 +388424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -403396,7 +388450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -403423,7 +388476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -403450,7 +388502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.815Z", @@ -403477,7 +388528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -403504,7 +388554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -403531,7 +388580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -403558,7 +388606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -403585,7 +388632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -403612,7 +388658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -403639,7 +388684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -403666,7 +388710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -403693,7 +388736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -403720,7 +388762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -403747,7 +388788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -403774,7 +388814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -403801,7 +388840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -403828,7 +388866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -403855,7 +388892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -403882,7 +388918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -403909,7 +388944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -403936,7 +388970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -403963,7 +388996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -403990,7 +389022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -404017,7 +389048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -404044,7 +389074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -404071,7 +389100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -404098,7 +389126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.816Z", @@ -404125,7 +389152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.817Z", @@ -404152,7 +389178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.817Z", @@ -404179,7 +389204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.817Z", @@ -404206,7 +389230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.817Z", @@ -404233,7 +389256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.817Z", @@ -404260,7 +389282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.817Z", @@ -404287,7 +389308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.817Z", @@ -404314,7 +389334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.817Z", @@ -404341,7 +389360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.817Z", @@ -404368,7 +389386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.817Z", @@ -404395,7 +389412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.817Z", @@ -404422,7 +389438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.817Z", @@ -404449,7 +389464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.817Z", @@ -404476,7 +389490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.817Z", @@ -404503,7 +389516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.817Z", @@ -404530,7 +389542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.817Z", @@ -404557,7 +389568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.817Z", @@ -404584,7 +389594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.817Z", @@ -404611,7 +389620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.817Z", @@ -404638,7 +389646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.817Z", @@ -404665,7 +389672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.818Z", @@ -404692,7 +389698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.818Z", @@ -404719,7 +389724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.818Z", @@ -404746,7 +389750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.818Z", @@ -404773,7 +389776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.818Z", @@ -404800,7 +389802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.819Z", @@ -404827,7 +389828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.819Z", @@ -404854,7 +389854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.819Z", @@ -404881,7 +389880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.819Z", @@ -404908,7 +389906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.819Z", @@ -404935,7 +389932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.820Z", @@ -404962,7 +389958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.820Z", @@ -404989,7 +389984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.820Z", @@ -405016,7 +390010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.820Z", @@ -405043,7 +390036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.820Z", @@ -405070,7 +390062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.820Z", @@ -405097,7 +390088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.820Z", @@ -405124,7 +390114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.820Z", @@ -405151,7 +390140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.820Z", @@ -405178,7 +390166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.820Z", @@ -405205,7 +390192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.820Z", @@ -405232,7 +390218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.820Z", @@ -405259,7 +390244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405286,7 +390270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405313,7 +390296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405340,7 +390322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405367,7 +390348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405394,7 +390374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405421,7 +390400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405448,7 +390426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405475,7 +390452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405502,7 +390478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405529,7 +390504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405556,7 +390530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405583,7 +390556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405610,7 +390582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405637,7 +390608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405664,7 +390634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405691,7 +390660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405718,7 +390686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405745,7 +390712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405772,7 +390738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405799,7 +390764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405826,7 +390790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405853,7 +390816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405880,7 +390842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.821Z", @@ -405907,7 +390868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -405934,7 +390894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -405961,7 +390920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -405988,7 +390946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406015,7 +390972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406042,7 +390998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406069,7 +391024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406096,7 +391050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406123,7 +391076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406150,7 +391102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406177,7 +391128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406204,7 +391154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406231,7 +391180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406258,7 +391206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406285,7 +391232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406312,7 +391258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406339,7 +391284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406366,7 +391310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406393,7 +391336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406420,7 +391362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406447,7 +391388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406474,7 +391414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406501,7 +391440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406528,7 +391466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406555,7 +391492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406582,7 +391518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406609,7 +391544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:26.822Z", @@ -406634,7 +391568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:32.998Z", @@ -406661,7 +391594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.173Z", @@ -406688,7 +391620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.173Z", @@ -406715,7 +391646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.173Z", @@ -406742,7 +391672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.173Z", @@ -406769,7 +391698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.173Z", @@ -406796,7 +391724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.173Z", @@ -406823,7 +391750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.173Z", @@ -406850,7 +391776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.173Z", @@ -406877,7 +391802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.173Z", @@ -406904,7 +391828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.173Z", @@ -406931,7 +391854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.173Z", @@ -406958,7 +391880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.173Z", @@ -406985,7 +391906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.173Z", @@ -407012,7 +391932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.173Z", @@ -407039,7 +391958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.173Z", @@ -407066,7 +391984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.173Z", @@ -407093,7 +392010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.173Z", @@ -407120,7 +392036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.173Z", @@ -407147,7 +392062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.173Z", @@ -407174,7 +392088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.173Z", @@ -407201,7 +392114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.173Z", @@ -407228,7 +392140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.174Z", @@ -407255,7 +392166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.174Z", @@ -407282,7 +392192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.174Z", @@ -407309,7 +392218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.174Z", @@ -407336,7 +392244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.174Z", @@ -407363,7 +392270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.174Z", @@ -407390,7 +392296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.174Z", @@ -407417,7 +392322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.174Z", @@ -407444,7 +392348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.174Z", @@ -407471,7 +392374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.174Z", @@ -407498,7 +392400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.174Z", @@ -407525,7 +392426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.174Z", @@ -407552,7 +392452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.174Z", @@ -407579,7 +392478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.174Z", @@ -407606,7 +392504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.174Z", @@ -407633,7 +392530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.174Z", @@ -407660,7 +392556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.174Z", @@ -407687,7 +392582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -407714,7 +392608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -407741,7 +392634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -407768,7 +392660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -407795,7 +392686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -407822,7 +392712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -407849,7 +392738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -407876,7 +392764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -407903,7 +392790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -407930,7 +392816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -407957,7 +392842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -407984,7 +392868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -408011,7 +392894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -408038,7 +392920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -408065,7 +392946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -408092,7 +392972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -408119,7 +392998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -408146,7 +393024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -408173,7 +393050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -408200,7 +393076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -408227,7 +393102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -408254,7 +393128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -408281,7 +393154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -408308,7 +393180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -408335,7 +393206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -408362,7 +393232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -408389,7 +393258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -408416,7 +393284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -408443,7 +393310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -408470,7 +393336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -408497,7 +393362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -408524,7 +393388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.175Z", @@ -408551,7 +393414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -408578,7 +393440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -408605,7 +393466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -408632,7 +393492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -408659,7 +393518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -408686,7 +393544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -408713,7 +393570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -408740,7 +393596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -408767,7 +393622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -408794,7 +393648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -408821,7 +393674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -408848,7 +393700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -408875,7 +393726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -408902,7 +393752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -408929,7 +393778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -408956,7 +393804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -408983,7 +393830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -409010,7 +393856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -409037,7 +393882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -409064,7 +393908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -409091,7 +393934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -409118,7 +393960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -409145,7 +393986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -409172,7 +394012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -409199,7 +394038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -409226,7 +394064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -409253,7 +394090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -409280,7 +394116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -409307,7 +394142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -409334,7 +394168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -409361,7 +394194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.176Z", @@ -409388,7 +394220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -409415,7 +394246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -409442,7 +394272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -409469,7 +394298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -409496,7 +394324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -409523,7 +394350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -409550,7 +394376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -409577,7 +394402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -409604,7 +394428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -409631,7 +394454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -409658,7 +394480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -409685,7 +394506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -409712,7 +394532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -409739,7 +394558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -409766,7 +394584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -409793,7 +394610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -409820,7 +394636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -409847,7 +394662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -409874,7 +394688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -409901,7 +394714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -409928,7 +394740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -409955,7 +394766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -409982,7 +394792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -410009,7 +394818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -410036,7 +394844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -410063,7 +394870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -410090,7 +394896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -410117,7 +394922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -410144,7 +394948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.177Z", @@ -410171,7 +394974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410198,7 +395000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410225,7 +395026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410252,7 +395052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410279,7 +395078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410306,7 +395104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410333,7 +395130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410360,7 +395156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410387,7 +395182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410414,7 +395208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410441,7 +395234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410468,7 +395260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410495,7 +395286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410522,7 +395312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410549,7 +395338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410576,7 +395364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410603,7 +395390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410630,7 +395416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410657,7 +395442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410684,7 +395468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410711,7 +395494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410738,7 +395520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410765,7 +395546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410792,7 +395572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410819,7 +395598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410846,7 +395624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410873,7 +395650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410900,7 +395676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410927,7 +395702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410954,7 +395728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -410981,7 +395754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -411008,7 +395780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -411035,7 +395806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.178Z", @@ -411062,7 +395832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411089,7 +395858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411116,7 +395884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411143,7 +395910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411170,7 +395936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411197,7 +395962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411224,7 +395988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411251,7 +396014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411278,7 +396040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411305,7 +396066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411332,7 +396092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411359,7 +396118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411386,7 +396144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411413,7 +396170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411440,7 +396196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411467,7 +396222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411494,7 +396248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411521,7 +396274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411548,7 +396300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411575,7 +396326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411602,7 +396352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411629,7 +396378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411656,7 +396404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411683,7 +396430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411710,7 +396456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.179Z", @@ -411737,7 +396482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -411764,7 +396508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -411791,7 +396534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -411818,7 +396560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -411845,7 +396586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -411872,7 +396612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -411899,7 +396638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -411926,7 +396664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -411953,7 +396690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -411980,7 +396716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -412007,7 +396742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -412034,7 +396768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -412061,7 +396794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -412088,7 +396820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -412115,7 +396846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -412142,7 +396872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -412169,7 +396898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -412196,7 +396924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -412223,7 +396950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -412250,7 +396976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -412277,7 +397002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -412304,7 +397028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -412331,7 +397054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -412358,7 +397080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -412385,7 +397106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -412412,7 +397132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -412439,7 +397158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -412466,7 +397184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -412493,7 +397210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -412520,7 +397236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.180Z", @@ -412547,7 +397262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.181Z", @@ -412574,7 +397288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.181Z", @@ -412601,7 +397314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.181Z", @@ -412628,7 +397340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.181Z", @@ -412655,7 +397366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.181Z", @@ -412682,7 +397392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.181Z", @@ -412709,7 +397418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.181Z", @@ -412736,7 +397444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.181Z", @@ -412763,7 +397470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.181Z", @@ -412790,7 +397496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.181Z", @@ -412817,7 +397522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.181Z", @@ -412844,7 +397548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.181Z", @@ -412871,7 +397574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.181Z", @@ -412898,7 +397600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.181Z", @@ -412925,7 +397626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.181Z", @@ -412952,7 +397652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.181Z", @@ -412979,7 +397678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.181Z", @@ -413006,7 +397704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.181Z", @@ -413033,7 +397730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.181Z", @@ -413060,7 +397756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.181Z", @@ -413087,7 +397782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.182Z", @@ -413114,7 +397808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.182Z", @@ -413141,7 +397834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.182Z", @@ -413168,7 +397860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.182Z", @@ -413195,7 +397886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.182Z", @@ -413222,7 +397912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.182Z", @@ -413249,7 +397938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.182Z", @@ -413276,7 +397964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.182Z", @@ -413303,7 +397990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.182Z", @@ -413330,7 +398016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.182Z", @@ -413357,7 +398042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.182Z", @@ -413384,7 +398068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.182Z", @@ -413411,7 +398094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.182Z", @@ -413438,7 +398120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.182Z", @@ -413465,7 +398146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.182Z", @@ -413492,7 +398172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.183Z", @@ -413519,7 +398198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.183Z", @@ -413546,7 +398224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.183Z", @@ -413573,7 +398250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.183Z", @@ -413600,7 +398276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.183Z", @@ -413627,7 +398302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.183Z", @@ -413654,7 +398328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.183Z", @@ -413681,7 +398354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.183Z", @@ -413708,7 +398380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.183Z", @@ -413735,7 +398406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.183Z", @@ -413762,7 +398432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.184Z", @@ -413789,7 +398458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.184Z", @@ -413816,7 +398484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.184Z", @@ -413843,7 +398510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.184Z", @@ -413870,7 +398536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.184Z", @@ -413897,7 +398562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.184Z", @@ -413924,7 +398588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.184Z", @@ -413951,7 +398614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.184Z", @@ -413978,7 +398640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.184Z", @@ -414005,7 +398666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.184Z", @@ -414032,7 +398692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.184Z", @@ -414059,7 +398718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.184Z", @@ -414086,7 +398744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.184Z", @@ -414113,7 +398770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.184Z", @@ -414140,7 +398796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.184Z", @@ -414167,7 +398822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414194,7 +398848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414221,7 +398874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414248,7 +398900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414275,7 +398926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414302,7 +398952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414329,7 +398978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414356,7 +399004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414383,7 +399030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414410,7 +399056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414437,7 +399082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414464,7 +399108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414491,7 +399134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414518,7 +399160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414545,7 +399186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414572,7 +399212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414599,7 +399238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414626,7 +399264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414653,7 +399290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414680,7 +399316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414707,7 +399342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414734,7 +399368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414761,7 +399394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414788,7 +399420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414815,7 +399446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.185Z", @@ -414842,7 +399472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.186Z", @@ -414869,7 +399498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.186Z", @@ -414896,7 +399524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.186Z", @@ -414923,7 +399550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.186Z", @@ -414950,7 +399576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.186Z", @@ -414977,7 +399602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.186Z", @@ -415004,7 +399628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.186Z", @@ -415031,7 +399654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.186Z", @@ -415058,7 +399680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.186Z", @@ -415085,7 +399706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.186Z", @@ -415112,7 +399732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:33.186Z", @@ -415137,7 +399756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.150Z", @@ -415164,7 +399782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.248Z", @@ -415191,7 +399808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.248Z", @@ -415218,7 +399834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.248Z", @@ -415245,7 +399860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415272,7 +399886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415299,7 +399912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415326,7 +399938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415353,7 +399964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415380,7 +399990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415407,7 +400016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415434,7 +400042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415461,7 +400068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415488,7 +400094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415515,7 +400120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415542,7 +400146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415569,7 +400172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415596,7 +400198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415623,7 +400224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415650,7 +400250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415677,7 +400276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415704,7 +400302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415731,7 +400328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415758,7 +400354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415785,7 +400380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415812,7 +400406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415839,7 +400432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415866,7 +400458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415893,7 +400484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415920,7 +400510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415947,7 +400536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -415974,7 +400562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -416001,7 +400588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.249Z", @@ -416028,7 +400614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.250Z", @@ -416055,7 +400640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.250Z", @@ -416082,7 +400666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.250Z", @@ -416109,7 +400692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.250Z", @@ -416136,7 +400718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.250Z", @@ -416163,7 +400744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.250Z", @@ -416190,7 +400770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.250Z", @@ -416217,7 +400796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.250Z", @@ -416244,7 +400822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.250Z", @@ -416271,7 +400848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.250Z", @@ -416298,7 +400874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.250Z", @@ -416325,7 +400900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.250Z", @@ -416352,7 +400926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.250Z", @@ -416379,7 +400952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.250Z", @@ -416406,7 +400978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.250Z", @@ -416433,7 +401004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.250Z", @@ -416460,7 +401030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -416487,7 +401056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -416514,7 +401082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -416541,7 +401108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -416568,7 +401134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -416595,7 +401160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -416622,7 +401186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -416649,7 +401212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -416676,7 +401238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -416703,7 +401264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -416730,7 +401290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -416757,7 +401316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -416784,7 +401342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -416811,7 +401368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -416838,7 +401394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -416865,7 +401420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -416892,7 +401446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -416919,7 +401472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -416946,7 +401498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -416973,7 +401524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -417000,7 +401550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -417027,7 +401576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -417054,7 +401602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -417081,7 +401628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -417108,7 +401654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -417135,7 +401680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -417162,7 +401706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -417189,7 +401732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -417216,7 +401758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -417243,7 +401784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.251Z", @@ -417270,7 +401810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417297,7 +401836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417324,7 +401862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417351,7 +401888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417378,7 +401914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417405,7 +401940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417432,7 +401966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417459,7 +401992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417486,7 +402018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417513,7 +402044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417540,7 +402070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417567,7 +402096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417594,7 +402122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417621,7 +402148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417648,7 +402174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417675,7 +402200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417702,7 +402226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417729,7 +402252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417756,7 +402278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417783,7 +402304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417810,7 +402330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417837,7 +402356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417864,7 +402382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417891,7 +402408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417918,7 +402434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417945,7 +402460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417972,7 +402486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -417999,7 +402512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -418026,7 +402538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -418053,7 +402564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -418080,7 +402590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -418107,7 +402616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -418134,7 +402642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -418161,7 +402668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -418188,7 +402694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -418215,7 +402720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -418242,7 +402746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -418269,7 +402772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -418296,7 +402798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -418323,7 +402824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -418350,7 +402850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -418377,7 +402876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.252Z", @@ -418404,7 +402902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -418431,7 +402928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -418458,7 +402954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -418485,7 +402980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -418512,7 +403006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -418539,7 +403032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -418566,7 +403058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -418593,7 +403084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -418620,7 +403110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -418647,7 +403136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -418674,7 +403162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -418701,7 +403188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -418728,7 +403214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -418755,7 +403240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -418782,7 +403266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -418809,7 +403292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -418836,7 +403318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -418863,7 +403344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -418890,7 +403370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -418917,7 +403396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -418944,7 +403422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -418971,7 +403448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -418998,7 +403474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -419025,7 +403500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -419052,7 +403526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -419079,7 +403552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -419106,7 +403578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -419133,7 +403604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -419160,7 +403630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -419187,7 +403656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -419214,7 +403682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -419241,7 +403708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -419268,7 +403734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -419295,7 +403760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -419322,7 +403786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -419349,7 +403812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.253Z", @@ -419376,7 +403838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -419403,7 +403864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -419430,7 +403890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -419457,7 +403916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -419484,7 +403942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -419511,7 +403968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -419538,7 +403994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -419565,7 +404020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -419592,7 +404046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -419619,7 +404072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -419646,7 +404098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -419673,7 +404124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -419700,7 +404150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -419727,7 +404176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -419754,7 +404202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -419781,7 +404228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -419808,7 +404254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -419835,7 +404280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -419862,7 +404306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -419889,7 +404332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -419916,7 +404358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -419943,7 +404384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -419970,7 +404410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -419997,7 +404436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -420024,7 +404462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -420051,7 +404488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -420078,7 +404514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -420105,7 +404540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -420132,7 +404566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -420159,7 +404592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -420186,7 +404618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -420213,7 +404644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -420240,7 +404670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -420267,7 +404696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -420294,7 +404722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -420321,7 +404748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -420348,7 +404774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -420375,7 +404800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -420402,7 +404826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -420429,7 +404852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -420456,7 +404878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -420483,7 +404904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.254Z", @@ -420510,7 +404930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -420537,7 +404956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -420564,7 +404982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -420591,7 +405008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -420618,7 +405034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -420645,7 +405060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -420672,7 +405086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -420699,7 +405112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -420726,7 +405138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -420753,7 +405164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -420780,7 +405190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -420807,7 +405216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -420834,7 +405242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -420861,7 +405268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -420888,7 +405294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -420915,7 +405320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -420942,7 +405346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -420969,7 +405372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -420996,7 +405398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -421023,7 +405424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -421050,7 +405450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -421077,7 +405476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -421104,7 +405502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -421131,7 +405528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -421158,7 +405554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -421185,7 +405580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -421212,7 +405606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -421239,7 +405632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -421266,7 +405658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -421293,7 +405684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -421320,7 +405710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -421347,7 +405736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -421374,7 +405762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -421401,7 +405788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -421428,7 +405814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.255Z", @@ -421455,7 +405840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -421482,7 +405866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -421509,7 +405892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -421536,7 +405918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -421563,7 +405944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -421590,7 +405970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -421617,7 +405996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -421644,7 +406022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -421671,7 +406048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -421698,7 +406074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -421725,7 +406100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -421752,7 +406126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -421779,7 +406152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -421806,7 +406178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -421833,7 +406204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -421860,7 +406230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -421887,7 +406256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -421914,7 +406282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -421941,7 +406308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -421968,7 +406334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -421995,7 +406360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -422022,7 +406386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -422049,7 +406412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -422076,7 +406438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -422103,7 +406464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -422130,7 +406490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -422157,7 +406516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -422184,7 +406542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -422211,7 +406568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -422238,7 +406594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -422265,7 +406620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -422292,7 +406646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -422319,7 +406672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -422346,7 +406698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -422373,7 +406724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -422400,7 +406750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -422427,7 +406776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -422454,7 +406802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -422481,7 +406828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -422508,7 +406854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -422535,7 +406880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.256Z", @@ -422562,7 +406906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -422589,7 +406932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -422616,7 +406958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -422643,7 +406984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -422670,7 +407010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -422697,7 +407036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -422724,7 +407062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -422751,7 +407088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -422778,7 +407114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -422805,7 +407140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -422832,7 +407166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -422859,7 +407192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -422886,7 +407218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -422913,7 +407244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -422940,7 +407270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -422967,7 +407296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -422994,7 +407322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -423021,7 +407348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -423048,7 +407374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -423075,7 +407400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -423102,7 +407426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -423129,7 +407452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -423156,7 +407478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -423183,7 +407504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -423210,7 +407530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -423237,7 +407556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -423264,7 +407582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -423291,7 +407608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -423318,7 +407634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -423345,7 +407660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -423372,7 +407686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -423399,7 +407712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -423426,7 +407738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -423453,7 +407764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.257Z", @@ -423480,7 +407790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.258Z", @@ -423507,7 +407816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.258Z", @@ -423534,7 +407842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.258Z", @@ -423561,7 +407868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.258Z", @@ -423588,7 +407894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.258Z", @@ -423615,7 +407920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:01:38.258Z", @@ -423640,7 +407944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.803Z", @@ -423667,7 +407970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.857Z", @@ -423694,7 +407996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.857Z", @@ -423721,7 +408022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.857Z", @@ -423748,7 +408048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.857Z", @@ -423775,7 +408074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.857Z", @@ -423802,7 +408100,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.857Z", @@ -423829,7 +408126,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.857Z", @@ -423856,7 +408152,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.857Z", @@ -423883,7 +408178,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.857Z", @@ -423910,7 +408204,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.858Z", @@ -423937,7 +408230,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.858Z", @@ -423964,7 +408256,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.858Z", @@ -423991,7 +408282,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.858Z", @@ -424018,7 +408308,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.858Z", @@ -424045,7 +408334,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.858Z", @@ -424072,7 +408360,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.858Z", @@ -424099,7 +408386,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.858Z", @@ -424126,7 +408412,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.858Z", @@ -424153,7 +408438,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.858Z", @@ -424180,7 +408464,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.858Z", @@ -424207,7 +408490,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.858Z", @@ -424234,7 +408516,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.858Z", @@ -424261,7 +408542,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.858Z", @@ -424288,7 +408568,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.858Z", @@ -424315,7 +408594,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.858Z", @@ -424342,7 +408620,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.858Z", @@ -424369,7 +408646,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.858Z", @@ -424396,7 +408672,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.858Z", @@ -424423,7 +408698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.858Z", @@ -424450,7 +408724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.858Z", @@ -424477,7 +408750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.858Z", @@ -424504,7 +408776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -424531,7 +408802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -424558,7 +408828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -424585,7 +408854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -424612,7 +408880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -424639,7 +408906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -424666,7 +408932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -424693,7 +408958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -424720,7 +408984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -424747,7 +409010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -424774,7 +409036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -424801,7 +409062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -424828,7 +409088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -424855,7 +409114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -424882,7 +409140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -424909,7 +409166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -424936,7 +409192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -424963,7 +409218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -424990,7 +409244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -425017,7 +409270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -425044,7 +409296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -425071,7 +409322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -425098,7 +409348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -425125,7 +409374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -425152,7 +409400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -425179,7 +409426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -425206,7 +409452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -425233,7 +409478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -425260,7 +409504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.859Z", @@ -425287,7 +409530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425314,7 +409556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425341,7 +409582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425368,7 +409608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425395,7 +409634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425422,7 +409660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425449,7 +409686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425476,7 +409712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425503,7 +409738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425530,7 +409764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425557,7 +409790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425584,7 +409816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425611,7 +409842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425638,7 +409868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425665,7 +409894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425692,7 +409920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425719,7 +409946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425746,7 +409972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425773,7 +409998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425800,7 +410024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425827,7 +410050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425854,7 +410076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425881,7 +410102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425908,7 +410128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425935,7 +410154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425962,7 +410180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -425989,7 +410206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -426016,7 +410232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -426043,7 +410258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -426070,7 +410284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -426097,7 +410310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -426124,7 +410336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -426151,7 +410362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -426178,7 +410388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -426205,7 +410414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -426232,7 +410440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.860Z", @@ -426259,7 +410466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.861Z", @@ -426286,7 +410492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.861Z", @@ -426313,7 +410518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.861Z", @@ -426340,7 +410544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.861Z", @@ -426367,7 +410570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.861Z", @@ -426394,7 +410596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.861Z", @@ -426421,7 +410622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.861Z", @@ -426448,7 +410648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.861Z", @@ -426475,7 +410674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:21.861Z", @@ -426500,7 +410698,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.940Z", @@ -426527,7 +410724,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.981Z", @@ -426554,7 +410750,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.981Z", @@ -426581,7 +410776,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.981Z", @@ -426608,7 +410802,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.981Z", @@ -426635,7 +410828,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.981Z", @@ -426662,7 +410854,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.981Z", @@ -426689,7 +410880,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.981Z", @@ -426716,7 +410906,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.981Z", @@ -426743,7 +410932,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.981Z", @@ -426770,7 +410958,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.981Z", @@ -426797,7 +410984,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -426824,7 +411010,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -426851,7 +411036,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -426878,7 +411062,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -426905,7 +411088,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -426932,7 +411114,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -426959,7 +411140,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -426986,7 +411166,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427013,7 +411192,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427040,7 +411218,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427067,7 +411244,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427094,7 +411270,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427121,7 +411296,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427148,7 +411322,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427175,7 +411348,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427202,7 +411374,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427229,7 +411400,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427256,7 +411426,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427283,7 +411452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427310,7 +411478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427337,7 +411504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427364,7 +411530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427391,7 +411556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427418,7 +411582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427445,7 +411608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427472,7 +411634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427499,7 +411660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427526,7 +411686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427553,7 +411712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427580,7 +411738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427607,7 +411764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427634,7 +411790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427661,7 +411816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427688,7 +411842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427715,7 +411868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.982Z", @@ -427742,7 +411894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -427769,7 +411920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -427796,7 +411946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -427823,7 +411972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -427850,7 +411998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -427877,7 +412024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -427904,7 +412050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -427931,7 +412076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -427958,7 +412102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -427985,7 +412128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428012,7 +412154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428039,7 +412180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428066,7 +412206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428093,7 +412232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428120,7 +412258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428147,7 +412284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428174,7 +412310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428201,7 +412336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428228,7 +412362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428255,7 +412388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428282,7 +412414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428309,7 +412440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428336,7 +412466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428363,7 +412492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428390,7 +412518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428417,7 +412544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428444,7 +412570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428471,7 +412596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428498,7 +412622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428525,7 +412648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428552,7 +412674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428579,7 +412700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428606,7 +412726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428633,7 +412752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428660,7 +412778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428687,7 +412804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428714,7 +412830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.983Z", @@ -428741,7 +412856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.984Z", @@ -428768,7 +412882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.984Z", @@ -428795,7 +412908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.984Z", @@ -428822,7 +412934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.984Z", @@ -428849,7 +412960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.984Z", @@ -428876,7 +412986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.984Z", @@ -428903,7 +413012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.984Z", @@ -428930,7 +413038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.984Z", @@ -428957,7 +413064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.984Z", @@ -428984,7 +413090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.984Z", @@ -429011,7 +413116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.984Z", @@ -429038,7 +413142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.984Z", @@ -429065,7 +413168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.984Z", @@ -429092,7 +413194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.984Z", @@ -429119,7 +413220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.984Z", @@ -429146,7 +413246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.984Z", @@ -429173,7 +413272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.984Z", @@ -429200,7 +413298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.984Z", @@ -429227,7 +413324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.984Z", @@ -429254,7 +413350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.984Z", @@ -429281,7 +413376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.984Z", @@ -429308,7 +413402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.984Z", @@ -429335,7 +413428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:27.984Z", @@ -429360,7 +413452,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.028Z", @@ -429387,7 +413478,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.068Z", @@ -429414,7 +413504,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.068Z", @@ -429441,7 +413530,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.068Z", @@ -429468,7 +413556,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.068Z", @@ -429495,7 +413582,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.068Z", @@ -429522,7 +413608,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.068Z", @@ -429549,7 +413634,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.068Z", @@ -429576,7 +413660,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.068Z", @@ -429603,7 +413686,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -429630,7 +413712,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -429657,7 +413738,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -429684,7 +413764,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -429711,7 +413790,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -429738,7 +413816,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -429765,7 +413842,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -429792,7 +413868,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -429819,7 +413894,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -429846,7 +413920,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -429873,7 +413946,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -429900,7 +413972,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -429927,7 +413998,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -429954,7 +414024,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -429981,7 +414050,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -430008,7 +414076,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -430035,7 +414102,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -430062,7 +414128,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -430089,7 +414154,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -430116,7 +414180,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -430143,7 +414206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -430170,7 +414232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -430197,7 +414258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -430224,7 +414284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -430251,7 +414310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -430278,7 +414336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -430305,7 +414362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -430332,7 +414388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -430359,7 +414414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -430386,7 +414440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -430413,7 +414466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -430440,7 +414492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -430467,7 +414518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -430494,7 +414544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -430521,7 +414570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -430548,7 +414596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.069Z", @@ -430575,7 +414622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -430602,7 +414648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -430629,7 +414674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -430656,7 +414700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -430683,7 +414726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -430710,7 +414752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -430737,7 +414778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -430764,7 +414804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -430791,7 +414830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -430818,7 +414856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -430845,7 +414882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -430872,7 +414908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -430899,7 +414934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -430926,7 +414960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -430953,7 +414986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -430980,7 +415012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -431007,7 +415038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -431034,7 +415064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -431061,7 +415090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -431088,7 +415116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -431115,7 +415142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -431142,7 +415168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -431169,7 +415194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -431196,7 +415220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -431223,7 +415246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -431250,7 +415272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -431277,7 +415298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -431304,7 +415324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -431331,7 +415350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -431358,7 +415376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -431385,7 +415402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -431412,7 +415428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -431439,7 +415454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -431466,7 +415480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -431493,7 +415506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -431520,7 +415532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -431547,7 +415558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -431574,7 +415584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.070Z", @@ -431601,7 +415610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.071Z", @@ -431628,7 +415636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.071Z", @@ -431655,7 +415662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.071Z", @@ -431682,7 +415688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.071Z", @@ -431709,7 +415714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.071Z", @@ -431736,7 +415740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.071Z", @@ -431763,7 +415766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.071Z", @@ -431790,7 +415792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.071Z", @@ -431817,7 +415818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.071Z", @@ -431844,7 +415844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.071Z", @@ -431871,7 +415870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.071Z", @@ -431898,7 +415896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.071Z", @@ -431925,7 +415922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.071Z", @@ -431952,7 +415948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.071Z", @@ -431979,7 +415974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.071Z", @@ -432006,7 +416000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.071Z", @@ -432033,7 +416026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.071Z", @@ -432060,7 +416052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.071Z", @@ -432087,7 +416078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.071Z", @@ -432114,7 +416104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.071Z", @@ -432141,7 +416130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.071Z", @@ -432168,7 +416156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.071Z", @@ -432195,7 +416182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:04:36.071Z", @@ -432220,7 +416206,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.841Z", @@ -432247,7 +416232,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.877Z", @@ -432274,7 +416258,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.877Z", @@ -432301,7 +416284,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.877Z", @@ -432328,7 +416310,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.877Z", @@ -432355,7 +416336,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.877Z", @@ -432382,7 +416362,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.877Z", @@ -432409,7 +416388,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.877Z", @@ -432436,7 +416414,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.877Z", @@ -432463,7 +416440,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.877Z", @@ -432490,7 +416466,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.877Z", @@ -432517,7 +416492,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.877Z", @@ -432544,7 +416518,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.877Z", @@ -432571,7 +416544,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.877Z", @@ -432598,7 +416570,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.877Z", @@ -432625,7 +416596,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.877Z", @@ -432652,7 +416622,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.877Z", @@ -432679,7 +416648,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.877Z", @@ -432706,7 +416674,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.877Z", @@ -432733,7 +416700,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -432760,7 +416726,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -432787,7 +416752,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -432814,7 +416778,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -432841,7 +416804,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -432868,7 +416830,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -432895,7 +416856,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -432922,7 +416882,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -432949,7 +416908,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -432976,7 +416934,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433003,7 +416960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433030,7 +416986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433057,7 +417012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433084,7 +417038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433111,7 +417064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433138,7 +417090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433165,7 +417116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433192,7 +417142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433219,7 +417168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433246,7 +417194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433273,7 +417220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433300,7 +417246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433327,7 +417272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433354,7 +417298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433381,7 +417324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433408,7 +417350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433435,7 +417376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433462,7 +417402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433489,7 +417428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433516,7 +417454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433543,7 +417480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433570,7 +417506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433597,7 +417532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433624,7 +417558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.878Z", @@ -433651,7 +417584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.879Z", @@ -433678,7 +417610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.879Z", @@ -433705,7 +417636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.879Z", @@ -433732,7 +417662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.879Z", @@ -433759,7 +417688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.879Z", @@ -433786,7 +417714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.879Z", @@ -433813,7 +417740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.879Z", @@ -433840,7 +417766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.879Z", @@ -433867,7 +417792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.879Z", @@ -433894,7 +417818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.879Z", @@ -433921,7 +417844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.879Z", @@ -433948,7 +417870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.879Z", @@ -433975,7 +417896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.879Z", @@ -434002,7 +417922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.879Z", @@ -434029,7 +417948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.879Z", @@ -434056,7 +417974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.879Z", @@ -434083,7 +418000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.879Z", @@ -434110,7 +418026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.879Z", @@ -434137,7 +418052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.879Z", @@ -434164,7 +418078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.879Z", @@ -434191,7 +418104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.879Z", @@ -434218,7 +418130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434245,7 +418156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434272,7 +418182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434299,7 +418208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434326,7 +418234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434353,7 +418260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434380,7 +418286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434407,7 +418312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434434,7 +418338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434461,7 +418364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434488,7 +418390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434515,7 +418416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434542,7 +418442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434569,7 +418468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434596,7 +418494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434623,7 +418520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434650,7 +418546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434677,7 +418572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434704,7 +418598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434731,7 +418624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434758,7 +418650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434785,7 +418676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434812,7 +418702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434839,7 +418728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434866,7 +418754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434893,7 +418780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434920,7 +418806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434947,7 +418832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -434974,7 +418858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -435001,7 +418884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -435028,7 +418910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -435055,7 +418936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:05.880Z", @@ -435080,7 +418960,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.360Z", @@ -435107,7 +418986,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.421Z", @@ -435134,7 +419012,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435161,7 +419038,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435188,7 +419064,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435215,7 +419090,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435242,7 +419116,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435269,7 +419142,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435296,7 +419168,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435323,7 +419194,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435350,7 +419220,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435377,7 +419246,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435404,7 +419272,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435431,7 +419298,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435458,7 +419324,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435485,7 +419350,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435512,7 +419376,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435539,7 +419402,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435566,7 +419428,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435593,7 +419454,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435620,7 +419480,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435647,7 +419506,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435674,7 +419532,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435701,7 +419558,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435728,7 +419584,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435755,7 +419610,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.422Z", @@ -435782,7 +419636,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -435809,7 +419662,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -435836,7 +419688,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -435863,7 +419714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -435890,7 +419740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -435917,7 +419766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -435944,7 +419792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -435971,7 +419818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -435998,7 +419844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -436025,7 +419870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -436052,7 +419896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -436079,7 +419922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -436106,7 +419948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -436133,7 +419974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -436160,7 +420000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -436187,7 +420026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -436214,7 +420052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -436241,7 +420078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -436268,7 +420104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -436295,7 +420130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -436322,7 +420156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -436349,7 +420182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -436376,7 +420208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -436403,7 +420234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -436430,7 +420260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -436457,7 +420286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -436484,7 +420312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.423Z", @@ -436511,7 +420338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.424Z", @@ -436538,7 +420364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.424Z", @@ -436565,7 +420390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.424Z", @@ -436592,7 +420416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.424Z", @@ -436619,7 +420442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.424Z", @@ -436646,7 +420468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.424Z", @@ -436673,7 +420494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.424Z", @@ -436700,7 +420520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.424Z", @@ -436727,7 +420546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.424Z", @@ -436754,7 +420572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.424Z", @@ -436781,7 +420598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.424Z", @@ -436808,7 +420624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.424Z", @@ -436835,7 +420650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.424Z", @@ -436862,7 +420676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.424Z", @@ -436889,7 +420702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.424Z", @@ -436916,7 +420728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.424Z", @@ -436943,7 +420754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.424Z", @@ -436970,7 +420780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.425Z", @@ -436997,7 +420806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.425Z", @@ -437024,7 +420832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.425Z", @@ -437051,7 +420858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.425Z", @@ -437078,7 +420884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.425Z", @@ -437105,7 +420910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.425Z", @@ -437132,7 +420936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.425Z", @@ -437159,7 +420962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.425Z", @@ -437186,7 +420988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.425Z", @@ -437213,7 +421014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.425Z", @@ -437240,7 +421040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.425Z", @@ -437267,7 +421066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.425Z", @@ -437294,7 +421092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.425Z", @@ -437321,7 +421118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.425Z", @@ -437348,7 +421144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.425Z", @@ -437375,7 +421170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.425Z", @@ -437402,7 +421196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.425Z", @@ -437429,7 +421222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.425Z", @@ -437456,7 +421248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.425Z", @@ -437483,7 +421274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.425Z", @@ -437510,7 +421300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.426Z", @@ -437537,7 +421326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.426Z", @@ -437564,7 +421352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.426Z", @@ -437591,7 +421378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.426Z", @@ -437618,7 +421404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.426Z", @@ -437645,7 +421430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.426Z", @@ -437672,7 +421456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.426Z", @@ -437699,7 +421482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.426Z", @@ -437726,7 +421508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.426Z", @@ -437753,7 +421534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.426Z", @@ -437780,7 +421560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.426Z", @@ -437807,7 +421586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.426Z", @@ -437834,7 +421612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.426Z", @@ -437861,7 +421638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.426Z", @@ -437888,7 +421664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.426Z", @@ -437915,7 +421690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:15.426Z", @@ -437940,7 +421714,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.203Z", @@ -437967,7 +421740,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.234Z", @@ -437994,7 +421766,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.234Z", @@ -438021,7 +421792,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.234Z", @@ -438048,7 +421818,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.234Z", @@ -438075,7 +421844,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.234Z", @@ -438102,7 +421870,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.234Z", @@ -438129,7 +421896,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.234Z", @@ -438156,7 +421922,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.234Z", @@ -438183,7 +421948,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.234Z", @@ -438210,7 +421974,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.234Z", @@ -438237,7 +422000,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.234Z", @@ -438264,7 +422026,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.234Z", @@ -438291,7 +422052,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.234Z", @@ -438318,7 +422078,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.234Z", @@ -438345,7 +422104,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.234Z", @@ -438372,7 +422130,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.234Z", @@ -438399,7 +422156,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.234Z", @@ -438426,7 +422182,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.234Z", @@ -438453,7 +422208,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.234Z", @@ -438480,7 +422234,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.234Z", @@ -438507,7 +422260,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.234Z", @@ -438534,7 +422286,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -438561,7 +422312,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -438588,7 +422338,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -438615,7 +422364,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -438642,7 +422390,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -438669,7 +422416,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -438696,7 +422442,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -438723,7 +422468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -438750,7 +422494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -438777,7 +422520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -438804,7 +422546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -438831,7 +422572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -438858,7 +422598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -438885,7 +422624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -438912,7 +422650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -438939,7 +422676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -438966,7 +422702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -438993,7 +422728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439020,7 +422754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439047,7 +422780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439074,7 +422806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439101,7 +422832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439128,7 +422858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439155,7 +422884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439182,7 +422910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439209,7 +422936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439236,7 +422962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439263,7 +422988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439290,7 +423014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439317,7 +423040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439344,7 +423066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439371,7 +423092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439398,7 +423118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439425,7 +423144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439452,7 +423170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439479,7 +423196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439506,7 +423222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439533,7 +423248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439560,7 +423274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439587,7 +423300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439614,7 +423326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.235Z", @@ -439641,7 +423352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -439668,7 +423378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -439695,7 +423404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -439722,7 +423430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -439749,7 +423456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -439776,7 +423482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -439803,7 +423508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -439830,7 +423534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -439857,7 +423560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -439884,7 +423586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -439911,7 +423612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -439938,7 +423638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -439965,7 +423664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -439992,7 +423690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440019,7 +423716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440046,7 +423742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440073,7 +423768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440100,7 +423794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440127,7 +423820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440154,7 +423846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440181,7 +423872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440208,7 +423898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440235,7 +423924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440262,7 +423950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440289,7 +423976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440316,7 +424002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440343,7 +424028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440370,7 +424054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440397,7 +424080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440424,7 +424106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440451,7 +424132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440478,7 +424158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440505,7 +424184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440532,7 +424210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440559,7 +424236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440586,7 +424262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440613,7 +424288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440640,7 +424314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440667,7 +424340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.236Z", @@ -440694,7 +424366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.237Z", @@ -440721,7 +424392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.237Z", @@ -440748,7 +424418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.237Z", @@ -440775,7 +424444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:06:21.237Z", @@ -440800,7 +424468,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.513Z", @@ -440827,7 +424494,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.569Z", @@ -440854,7 +424520,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.569Z", @@ -440881,7 +424546,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.569Z", @@ -440908,7 +424572,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.569Z", @@ -440935,7 +424598,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.569Z", @@ -440962,7 +424624,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.569Z", @@ -440989,7 +424650,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.569Z", @@ -441016,7 +424676,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.569Z", @@ -441043,7 +424702,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.569Z", @@ -441070,7 +424728,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.569Z", @@ -441097,7 +424754,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.570Z", @@ -441124,7 +424780,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.570Z", @@ -441151,7 +424806,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.570Z", @@ -441178,7 +424832,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.570Z", @@ -441205,7 +424858,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.570Z", @@ -441232,7 +424884,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.570Z", @@ -441259,7 +424910,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.570Z", @@ -441286,7 +424936,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.570Z", @@ -441313,7 +424962,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.570Z", @@ -441340,7 +424988,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.570Z", @@ -441367,7 +425014,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.570Z", @@ -441394,7 +425040,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.571Z", @@ -441421,7 +425066,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.571Z", @@ -441448,7 +425092,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.571Z", @@ -441475,7 +425118,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.571Z", @@ -441502,7 +425144,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.571Z", @@ -441529,7 +425170,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.571Z", @@ -441556,7 +425196,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.571Z", @@ -441583,7 +425222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.571Z", @@ -441610,7 +425248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.571Z", @@ -441637,7 +425274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.571Z", @@ -441664,7 +425300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.571Z", @@ -441691,7 +425326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.572Z", @@ -441718,7 +425352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.572Z", @@ -441745,7 +425378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.572Z", @@ -441772,7 +425404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.572Z", @@ -441799,7 +425430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.572Z", @@ -441826,7 +425456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.572Z", @@ -441853,7 +425482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.572Z", @@ -441880,7 +425508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.572Z", @@ -441907,7 +425534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.572Z", @@ -441934,7 +425560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.572Z", @@ -441961,7 +425586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.572Z", @@ -441988,7 +425612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.572Z", @@ -442015,7 +425638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.572Z", @@ -442042,7 +425664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.573Z", @@ -442069,7 +425690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.573Z", @@ -442096,7 +425716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.573Z", @@ -442123,7 +425742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.573Z", @@ -442150,7 +425768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.573Z", @@ -442177,7 +425794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.573Z", @@ -442204,7 +425820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.573Z", @@ -442231,7 +425846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.573Z", @@ -442258,7 +425872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.573Z", @@ -442285,7 +425898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.573Z", @@ -442312,7 +425924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.573Z", @@ -442339,7 +425950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.573Z", @@ -442366,7 +425976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.573Z", @@ -442393,7 +426002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.573Z", @@ -442420,7 +426028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.573Z", @@ -442447,7 +426054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.574Z", @@ -442474,7 +426080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.574Z", @@ -442501,7 +426106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.574Z", @@ -442528,7 +426132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.574Z", @@ -442555,7 +426158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.574Z", @@ -442582,7 +426184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.574Z", @@ -442609,7 +426210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.574Z", @@ -442636,7 +426236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.574Z", @@ -442663,7 +426262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.574Z", @@ -442690,7 +426288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.574Z", @@ -442717,7 +426314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.574Z", @@ -442744,7 +426340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.574Z", @@ -442771,7 +426366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.574Z", @@ -442798,7 +426392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.574Z", @@ -442825,7 +426418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.575Z", @@ -442852,7 +426444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.575Z", @@ -442879,7 +426470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.575Z", @@ -442906,7 +426496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.575Z", @@ -442933,7 +426522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.575Z", @@ -442960,7 +426548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.575Z", @@ -442987,7 +426574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.575Z", @@ -443014,7 +426600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.575Z", @@ -443041,7 +426626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.575Z", @@ -443068,7 +426652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.575Z", @@ -443095,7 +426678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.575Z", @@ -443122,7 +426704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.575Z", @@ -443149,7 +426730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.576Z", @@ -443176,7 +426756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.576Z", @@ -443203,7 +426782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.576Z", @@ -443230,7 +426808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.576Z", @@ -443257,7 +426834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.576Z", @@ -443284,7 +426860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.576Z", @@ -443311,7 +426886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.576Z", @@ -443338,7 +426912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.576Z", @@ -443365,7 +426938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.576Z", @@ -443392,7 +426964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.576Z", @@ -443419,7 +426990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.576Z", @@ -443446,7 +427016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.576Z", @@ -443473,7 +427042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.576Z", @@ -443500,7 +427068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.577Z", @@ -443527,7 +427094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.577Z", @@ -443554,7 +427120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.577Z", @@ -443581,7 +427146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.577Z", @@ -443608,7 +427172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.577Z", @@ -443635,7 +427198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:02.577Z", @@ -443660,7 +427222,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.873Z", @@ -443687,7 +427248,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.941Z", @@ -443714,7 +427274,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.941Z", @@ -443741,7 +427300,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.942Z", @@ -443768,7 +427326,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.942Z", @@ -443795,7 +427352,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.942Z", @@ -443822,7 +427378,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.942Z", @@ -443849,7 +427404,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.942Z", @@ -443876,7 +427430,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.942Z", @@ -443903,7 +427456,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.942Z", @@ -443930,7 +427482,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.942Z", @@ -443957,7 +427508,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.942Z", @@ -443984,7 +427534,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.942Z", @@ -444011,7 +427560,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.942Z", @@ -444038,7 +427586,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.942Z", @@ -444065,7 +427612,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.942Z", @@ -444092,7 +427638,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.942Z", @@ -444119,7 +427664,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.942Z", @@ -444146,7 +427690,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.943Z", @@ -444173,7 +427716,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.943Z", @@ -444200,7 +427742,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.943Z", @@ -444227,7 +427768,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.943Z", @@ -444254,7 +427794,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.943Z", @@ -444281,7 +427820,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.943Z", @@ -444308,7 +427846,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.943Z", @@ -444335,7 +427872,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.943Z", @@ -444362,7 +427898,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.943Z", @@ -444389,7 +427924,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.943Z", @@ -444416,7 +427950,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.943Z", @@ -444443,7 +427976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.944Z", @@ -444470,7 +428002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.944Z", @@ -444497,7 +428028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.944Z", @@ -444524,7 +428054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.944Z", @@ -444551,7 +428080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.944Z", @@ -444578,7 +428106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.944Z", @@ -444605,7 +428132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.944Z", @@ -444632,7 +428158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.944Z", @@ -444659,7 +428184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.944Z", @@ -444686,7 +428210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.944Z", @@ -444713,7 +428236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.944Z", @@ -444740,7 +428262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.944Z", @@ -444767,7 +428288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.944Z", @@ -444794,7 +428314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.944Z", @@ -444821,7 +428340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.944Z", @@ -444848,7 +428366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.944Z", @@ -444875,7 +428392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.944Z", @@ -444902,7 +428418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.944Z", @@ -444929,7 +428444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -444956,7 +428470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -444983,7 +428496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -445010,7 +428522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -445037,7 +428548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -445064,7 +428574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -445091,7 +428600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -445118,7 +428626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -445145,7 +428652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -445172,7 +428678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -445199,7 +428704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -445226,7 +428730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -445253,7 +428756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -445280,7 +428782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -445307,7 +428808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -445334,7 +428834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -445361,7 +428860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -445388,7 +428886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -445415,7 +428912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -445442,7 +428938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -445469,7 +428964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -445496,7 +428990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -445523,7 +429016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -445550,7 +429042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.945Z", @@ -445577,7 +429068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.946Z", @@ -445604,7 +429094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.946Z", @@ -445631,7 +429120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.946Z", @@ -445658,7 +429146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.946Z", @@ -445685,7 +429172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.946Z", @@ -445712,7 +429198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.946Z", @@ -445739,7 +429224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.946Z", @@ -445766,7 +429250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.946Z", @@ -445793,7 +429276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.946Z", @@ -445820,7 +429302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.946Z", @@ -445847,7 +429328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.946Z", @@ -445874,7 +429354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.946Z", @@ -445901,7 +429380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.946Z", @@ -445928,7 +429406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.946Z", @@ -445955,7 +429432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.946Z", @@ -445982,7 +429458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.946Z", @@ -446009,7 +429484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.946Z", @@ -446036,7 +429510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.946Z", @@ -446063,7 +429536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.946Z", @@ -446090,7 +429562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.946Z", @@ -446117,7 +429588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.946Z", @@ -446144,7 +429614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.946Z", @@ -446171,7 +429640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.946Z", @@ -446198,7 +429666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.947Z", @@ -446225,7 +429692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.947Z", @@ -446252,7 +429718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.947Z", @@ -446279,7 +429744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.947Z", @@ -446306,7 +429770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.947Z", @@ -446333,7 +429796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.947Z", @@ -446360,7 +429822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.947Z", @@ -446387,7 +429848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.947Z", @@ -446414,7 +429874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.947Z", @@ -446441,7 +429900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.947Z", @@ -446468,7 +429926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.947Z", @@ -446495,7 +429952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:07.947Z", @@ -446520,7 +429976,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.633Z", @@ -446547,7 +430002,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.674Z", @@ -446574,7 +430028,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.674Z", @@ -446601,7 +430054,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.674Z", @@ -446628,7 +430080,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.674Z", @@ -446655,7 +430106,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.674Z", @@ -446682,7 +430132,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.674Z", @@ -446709,7 +430158,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.674Z", @@ -446736,7 +430184,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.674Z", @@ -446763,7 +430210,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.674Z", @@ -446790,7 +430236,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.674Z", @@ -446817,7 +430262,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.674Z", @@ -446844,7 +430288,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.674Z", @@ -446871,7 +430314,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.674Z", @@ -446898,7 +430340,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.674Z", @@ -446925,7 +430366,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.674Z", @@ -446952,7 +430392,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.674Z", @@ -446979,7 +430418,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.674Z", @@ -447006,7 +430444,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.675Z", @@ -447033,7 +430470,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.675Z", @@ -447060,7 +430496,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.675Z", @@ -447087,7 +430522,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.675Z", @@ -447114,7 +430548,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.675Z", @@ -447141,7 +430574,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.675Z", @@ -447168,7 +430600,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.675Z", @@ -447195,7 +430626,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.675Z", @@ -447222,7 +430652,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.675Z", @@ -447249,7 +430678,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.675Z", @@ -447276,7 +430704,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.675Z", @@ -447303,7 +430730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.675Z", @@ -447330,7 +430756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.675Z", @@ -447357,7 +430782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.675Z", @@ -447384,7 +430808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.675Z", @@ -447411,7 +430834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.675Z", @@ -447438,7 +430860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.675Z", @@ -447465,7 +430886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.675Z", @@ -447492,7 +430912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.675Z", @@ -447519,7 +430938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.675Z", @@ -447546,7 +430964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.675Z", @@ -447573,7 +430990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.676Z", @@ -447600,7 +431016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.676Z", @@ -447627,7 +431042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.676Z", @@ -447654,7 +431068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.676Z", @@ -447681,7 +431094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.676Z", @@ -447708,7 +431120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.676Z", @@ -447735,7 +431146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.676Z", @@ -447762,7 +431172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.676Z", @@ -447789,7 +431198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.676Z", @@ -447816,7 +431224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.676Z", @@ -447843,7 +431250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.676Z", @@ -447870,7 +431276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.676Z", @@ -447897,7 +431302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.676Z", @@ -447924,7 +431328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.676Z", @@ -447951,7 +431354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.676Z", @@ -447978,7 +431380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.676Z", @@ -448005,7 +431406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.676Z", @@ -448032,7 +431432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.676Z", @@ -448059,7 +431458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.676Z", @@ -448086,7 +431484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.676Z", @@ -448113,7 +431510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.676Z", @@ -448140,7 +431536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.676Z", @@ -448167,7 +431562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.676Z", @@ -448194,7 +431588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448221,7 +431614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448248,7 +431640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448275,7 +431666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448302,7 +431692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448329,7 +431718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448356,7 +431744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448383,7 +431770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448410,7 +431796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448437,7 +431822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448464,7 +431848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448491,7 +431874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448518,7 +431900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448545,7 +431926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448572,7 +431952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448599,7 +431978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448626,7 +432004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448653,7 +432030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448680,7 +432056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448707,7 +432082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448734,7 +432108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448761,7 +432134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448788,7 +432160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448815,7 +432186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448842,7 +432212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448869,7 +432238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448896,7 +432264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448923,7 +432290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448950,7 +432316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -448977,7 +432342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -449004,7 +432368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -449031,7 +432394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -449058,7 +432420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.677Z", @@ -449085,7 +432446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.678Z", @@ -449112,7 +432472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.678Z", @@ -449139,7 +432498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.678Z", @@ -449166,7 +432524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.678Z", @@ -449193,7 +432550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.678Z", @@ -449220,7 +432576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.678Z", @@ -449247,7 +432602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.678Z", @@ -449274,7 +432628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.678Z", @@ -449301,7 +432654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.678Z", @@ -449328,7 +432680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.678Z", @@ -449355,7 +432706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:08:11.678Z", @@ -449380,7 +432730,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.540Z", @@ -449407,7 +432756,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.616Z", @@ -449434,7 +432782,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.616Z", @@ -449461,7 +432808,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.616Z", @@ -449488,7 +432834,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.616Z", @@ -449515,7 +432860,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.616Z", @@ -449542,7 +432886,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.616Z", @@ -449569,7 +432912,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.616Z", @@ -449596,7 +432938,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.617Z", @@ -449623,7 +432964,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.617Z", @@ -449650,7 +432990,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.617Z", @@ -449677,7 +433016,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.617Z", @@ -449704,7 +433042,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.617Z", @@ -449731,7 +433068,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.617Z", @@ -449758,7 +433094,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.617Z", @@ -449785,7 +433120,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.617Z", @@ -449812,7 +433146,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.617Z", @@ -449839,7 +433172,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.617Z", @@ -449866,7 +433198,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.617Z", @@ -449893,7 +433224,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.617Z", @@ -449920,7 +433250,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.617Z", @@ -449947,7 +433276,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.617Z", @@ -449974,7 +433302,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.617Z", @@ -450001,7 +433328,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.617Z", @@ -450028,7 +433354,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.617Z", @@ -450055,7 +433380,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.617Z", @@ -450082,7 +433406,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.617Z", @@ -450109,7 +433432,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.617Z", @@ -450136,7 +433458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.617Z", @@ -450163,7 +433484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.618Z", @@ -450190,7 +433510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.618Z", @@ -450217,7 +433536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.618Z", @@ -450244,7 +433562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.618Z", @@ -450271,7 +433588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.618Z", @@ -450298,7 +433614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.618Z", @@ -450325,7 +433640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.618Z", @@ -450352,7 +433666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.618Z", @@ -450379,7 +433692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.618Z", @@ -450406,7 +433718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.618Z", @@ -450433,7 +433744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.619Z", @@ -450460,7 +433770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.619Z", @@ -450487,7 +433796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.619Z", @@ -450514,7 +433822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.619Z", @@ -450541,7 +433848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.619Z", @@ -450568,7 +433874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.619Z", @@ -450595,7 +433900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.619Z", @@ -450622,7 +433926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.619Z", @@ -450649,7 +433952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.619Z", @@ -450676,7 +433978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.619Z", @@ -450703,7 +434004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.619Z", @@ -450730,7 +434030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.620Z", @@ -450757,7 +434056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.620Z", @@ -450784,7 +434082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.620Z", @@ -450811,7 +434108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.620Z", @@ -450838,7 +434134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.620Z", @@ -450865,7 +434160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.620Z", @@ -450892,7 +434186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.620Z", @@ -450919,7 +434212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.620Z", @@ -450946,7 +434238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.620Z", @@ -450973,7 +434264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.620Z", @@ -451000,7 +434290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.620Z", @@ -451027,7 +434316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.620Z", @@ -451054,7 +434342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.620Z", @@ -451081,7 +434368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.620Z", @@ -451108,7 +434394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.620Z", @@ -451135,7 +434420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.620Z", @@ -451162,7 +434446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.621Z", @@ -451189,7 +434472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.621Z", @@ -451216,7 +434498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.621Z", @@ -451243,7 +434524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.621Z", @@ -451270,7 +434550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.621Z", @@ -451297,7 +434576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.621Z", @@ -451324,7 +434602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.621Z", @@ -451351,7 +434628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.621Z", @@ -451378,7 +434654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.621Z", @@ -451405,7 +434680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.621Z", @@ -451432,7 +434706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.621Z", @@ -451459,7 +434732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.621Z", @@ -451486,7 +434758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.621Z", @@ -451513,7 +434784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.621Z", @@ -451540,7 +434810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.621Z", @@ -451567,7 +434836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.621Z", @@ -451594,7 +434862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.621Z", @@ -451621,7 +434888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.622Z", @@ -451648,7 +434914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.622Z", @@ -451675,7 +434940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.622Z", @@ -451702,7 +434966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.622Z", @@ -451729,7 +434992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.622Z", @@ -451756,7 +435018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.622Z", @@ -451783,7 +435044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.622Z", @@ -451810,7 +435070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.622Z", @@ -451837,7 +435096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.622Z", @@ -451864,7 +435122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.622Z", @@ -451891,7 +435148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.622Z", @@ -451918,7 +435174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.622Z", @@ -451945,7 +435200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.622Z", @@ -451972,7 +435226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.622Z", @@ -451999,7 +435252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.623Z", @@ -452026,7 +435278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.623Z", @@ -452053,7 +435304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.623Z", @@ -452080,7 +435330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.623Z", @@ -452107,7 +435356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.623Z", @@ -452134,7 +435382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.623Z", @@ -452161,7 +435408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.623Z", @@ -452188,7 +435434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:10.623Z", @@ -452213,7 +435458,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.357Z", @@ -452240,7 +435484,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.430Z", @@ -452267,7 +435510,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.430Z", @@ -452294,7 +435536,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.430Z", @@ -452321,7 +435562,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.430Z", @@ -452348,7 +435588,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.430Z", @@ -452375,7 +435614,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.430Z", @@ -452402,7 +435640,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.430Z", @@ -452429,7 +435666,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.430Z", @@ -452456,7 +435692,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.430Z", @@ -452483,7 +435718,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.430Z", @@ -452510,7 +435744,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.431Z", @@ -452537,7 +435770,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.431Z", @@ -452564,7 +435796,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.431Z", @@ -452591,7 +435822,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.431Z", @@ -452618,7 +435848,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.431Z", @@ -452645,7 +435874,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.431Z", @@ -452672,7 +435900,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.431Z", @@ -452699,7 +435926,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.431Z", @@ -452726,7 +435952,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.431Z", @@ -452753,7 +435978,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.431Z", @@ -452780,7 +436004,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.431Z", @@ -452807,7 +436030,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.431Z", @@ -452834,7 +436056,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.431Z", @@ -452861,7 +436082,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.431Z", @@ -452888,7 +436108,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.431Z", @@ -452915,7 +436134,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.431Z", @@ -452942,7 +436160,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.431Z", @@ -452969,7 +436186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.431Z", @@ -452996,7 +436212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.431Z", @@ -453023,7 +436238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.432Z", @@ -453050,7 +436264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.432Z", @@ -453077,7 +436290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.432Z", @@ -453104,7 +436316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.432Z", @@ -453131,7 +436342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.432Z", @@ -453158,7 +436368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.432Z", @@ -453185,7 +436394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.432Z", @@ -453212,7 +436420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.432Z", @@ -453239,7 +436446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.432Z", @@ -453266,7 +436472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.432Z", @@ -453293,7 +436498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.432Z", @@ -453320,7 +436524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.432Z", @@ -453347,7 +436550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.432Z", @@ -453374,7 +436576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.432Z", @@ -453401,7 +436602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.432Z", @@ -453428,7 +436628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.432Z", @@ -453455,7 +436654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.432Z", @@ -453482,7 +436680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.432Z", @@ -453509,7 +436706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.432Z", @@ -453536,7 +436732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.432Z", @@ -453563,7 +436758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -453590,7 +436784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -453617,7 +436810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -453644,7 +436836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -453671,7 +436862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -453698,7 +436888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -453725,7 +436914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -453752,7 +436940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -453779,7 +436966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -453806,7 +436992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -453833,7 +437018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -453860,7 +437044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -453887,7 +437070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -453914,7 +437096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -453941,7 +437122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -453968,7 +437148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -453995,7 +437174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -454022,7 +437200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -454049,7 +437226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -454076,7 +437252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -454103,7 +437278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -454130,7 +437304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -454157,7 +437330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -454184,7 +437356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -454211,7 +437382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -454238,7 +437408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -454265,7 +437434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -454292,7 +437460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -454319,7 +437486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.433Z", @@ -454346,7 +437512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454373,7 +437538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454400,7 +437564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454427,7 +437590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454454,7 +437616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454481,7 +437642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454508,7 +437668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454535,7 +437694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454562,7 +437720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454589,7 +437746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454616,7 +437772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454643,7 +437798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454670,7 +437824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454697,7 +437850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454724,7 +437876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454751,7 +437902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454778,7 +437928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454805,7 +437954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454832,7 +437980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454859,7 +438006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454886,7 +438032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454913,7 +438058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454940,7 +438084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454967,7 +438110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -454994,7 +438136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -455021,7 +438162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:16.434Z", @@ -455046,7 +438186,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.094Z", @@ -455073,7 +438212,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.126Z", @@ -455100,7 +438238,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.126Z", @@ -455127,7 +438264,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.126Z", @@ -455154,7 +438290,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.126Z", @@ -455181,7 +438316,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.126Z", @@ -455208,7 +438342,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.126Z", @@ -455235,7 +438368,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.126Z", @@ -455262,7 +438394,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455289,7 +438420,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455316,7 +438446,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455343,7 +438472,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455370,7 +438498,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455397,7 +438524,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455424,7 +438550,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455451,7 +438576,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455478,7 +438602,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455505,7 +438628,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455532,7 +438654,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455559,7 +438680,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455586,7 +438706,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455613,7 +438732,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455640,7 +438758,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455667,7 +438784,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455694,7 +438810,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455721,7 +438836,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455748,7 +438862,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455775,7 +438888,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455802,7 +438914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455829,7 +438940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455856,7 +438966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455883,7 +438992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455910,7 +439018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455937,7 +439044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455964,7 +439070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -455991,7 +439096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -456018,7 +439122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -456045,7 +439148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -456072,7 +439174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -456099,7 +439200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -456126,7 +439226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -456153,7 +439252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -456180,7 +439278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -456207,7 +439304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -456234,7 +439330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -456261,7 +439356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -456288,7 +439382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.127Z", @@ -456315,7 +439408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456342,7 +439434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456369,7 +439460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456396,7 +439486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456423,7 +439512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456450,7 +439538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456477,7 +439564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456504,7 +439590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456531,7 +439616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456558,7 +439642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456585,7 +439668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456612,7 +439694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456639,7 +439720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456666,7 +439746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456693,7 +439772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456720,7 +439798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456747,7 +439824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456774,7 +439850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456801,7 +439876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456828,7 +439902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456855,7 +439928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456882,7 +439954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456909,7 +439980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456936,7 +440006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456963,7 +440032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -456990,7 +440058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -457017,7 +440084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -457044,7 +440110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -457071,7 +440136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -457098,7 +440162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -457125,7 +440188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -457152,7 +440214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -457179,7 +440240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -457206,7 +440266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.128Z", @@ -457233,7 +440292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457260,7 +440318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457287,7 +440344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457314,7 +440370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457341,7 +440396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457368,7 +440422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457395,7 +440448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457422,7 +440474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457449,7 +440500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457476,7 +440526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457503,7 +440552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457530,7 +440578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457557,7 +440604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457584,7 +440630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457611,7 +440656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457638,7 +440682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457665,7 +440708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457692,7 +440734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457719,7 +440760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457746,7 +440786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457773,7 +440812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457800,7 +440838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457827,7 +440864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457854,7 +440890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:11:20.129Z", @@ -457879,7 +440914,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.883Z", @@ -457906,7 +440940,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.972Z", @@ -457933,7 +440966,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.972Z", @@ -457960,7 +440992,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.973Z", @@ -457987,7 +441018,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.973Z", @@ -458014,7 +441044,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.973Z", @@ -458041,7 +441070,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.973Z", @@ -458068,7 +441096,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.973Z", @@ -458095,7 +441122,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.973Z", @@ -458122,7 +441148,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.973Z", @@ -458149,7 +441174,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.973Z", @@ -458176,7 +441200,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.973Z", @@ -458203,7 +441226,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.973Z", @@ -458230,7 +441252,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.973Z", @@ -458257,7 +441278,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.973Z", @@ -458284,7 +441304,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.973Z", @@ -458311,7 +441330,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.974Z", @@ -458338,7 +441356,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.974Z", @@ -458365,7 +441382,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.974Z", @@ -458392,7 +441408,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.974Z", @@ -458419,7 +441434,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.974Z", @@ -458446,7 +441460,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.974Z", @@ -458473,7 +441486,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.974Z", @@ -458500,7 +441512,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.974Z", @@ -458527,7 +441538,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.974Z", @@ -458554,7 +441564,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.974Z", @@ -458581,7 +441590,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.974Z", @@ -458608,7 +441616,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.974Z", @@ -458635,7 +441642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.974Z", @@ -458662,7 +441668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.974Z", @@ -458689,7 +441694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.975Z", @@ -458716,7 +441720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.975Z", @@ -458743,7 +441746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.975Z", @@ -458770,7 +441772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.975Z", @@ -458797,7 +441798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.975Z", @@ -458824,7 +441824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.975Z", @@ -458851,7 +441850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.975Z", @@ -458878,7 +441876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.975Z", @@ -458905,7 +441902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.975Z", @@ -458932,7 +441928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.975Z", @@ -458959,7 +441954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.975Z", @@ -458986,7 +441980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.975Z", @@ -459013,7 +442006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.976Z", @@ -459040,7 +442032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.976Z", @@ -459067,7 +442058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.976Z", @@ -459094,7 +442084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.976Z", @@ -459121,7 +442110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.976Z", @@ -459148,7 +442136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.976Z", @@ -459175,7 +442162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.976Z", @@ -459202,7 +442188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.976Z", @@ -459229,7 +442214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.976Z", @@ -459256,7 +442240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.976Z", @@ -459283,7 +442266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.976Z", @@ -459310,7 +442292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.976Z", @@ -459337,7 +442318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.976Z", @@ -459364,7 +442344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.977Z", @@ -459391,7 +442370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.977Z", @@ -459418,7 +442396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.977Z", @@ -459445,7 +442422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.977Z", @@ -459472,7 +442448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.977Z", @@ -459499,7 +442474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.977Z", @@ -459526,7 +442500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.977Z", @@ -459553,7 +442526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.977Z", @@ -459580,7 +442552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.977Z", @@ -459607,7 +442578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.977Z", @@ -459634,7 +442604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.977Z", @@ -459661,7 +442630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.977Z", @@ -459688,7 +442656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.977Z", @@ -459715,7 +442682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.977Z", @@ -459742,7 +442708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.977Z", @@ -459769,7 +442734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.977Z", @@ -459796,7 +442760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.977Z", @@ -459823,7 +442786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.978Z", @@ -459850,7 +442812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.978Z", @@ -459877,7 +442838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.978Z", @@ -459904,7 +442864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.978Z", @@ -459931,7 +442890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.978Z", @@ -459958,7 +442916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.978Z", @@ -459985,7 +442942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.978Z", @@ -460012,7 +442968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.978Z", @@ -460039,7 +442994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.979Z", @@ -460066,7 +443020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.979Z", @@ -460093,7 +443046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.979Z", @@ -460120,7 +443072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.979Z", @@ -460147,7 +443098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.979Z", @@ -460174,7 +443124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.979Z", @@ -460201,7 +443150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.979Z", @@ -460228,7 +443176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.979Z", @@ -460255,7 +443202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.979Z", @@ -460282,7 +443228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.979Z", @@ -460309,7 +443254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.979Z", @@ -460336,7 +443280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.979Z", @@ -460363,7 +443306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.979Z", @@ -460390,7 +443332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.979Z", @@ -460417,7 +443358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.979Z", @@ -460444,7 +443384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.979Z", @@ -460471,7 +443410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.980Z", @@ -460498,7 +443436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.980Z", @@ -460525,7 +443462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.980Z", @@ -460552,7 +443488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.980Z", @@ -460579,7 +443514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.980Z", @@ -460606,7 +443540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.980Z", @@ -460633,7 +443566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.980Z", @@ -460660,7 +443592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.980Z", @@ -460687,7 +443618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6537904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:51.980Z", @@ -460712,7 +443642,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.334Z", @@ -460739,7 +443668,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.378Z", @@ -460766,7 +443694,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.378Z", @@ -460793,7 +443720,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.378Z", @@ -460820,7 +443746,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.378Z", @@ -460847,7 +443772,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.378Z", @@ -460874,7 +443798,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.378Z", @@ -460901,7 +443824,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.378Z", @@ -460928,7 +443850,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.378Z", @@ -460955,7 +443876,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.378Z", @@ -460982,7 +443902,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.378Z", @@ -461009,7 +443928,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.378Z", @@ -461036,7 +443954,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.378Z", @@ -461063,7 +443980,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.378Z", @@ -461090,7 +444006,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.378Z", @@ -461117,7 +444032,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.378Z", @@ -461144,7 +444058,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.378Z", @@ -461171,7 +444084,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461198,7 +444110,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461225,7 +444136,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461252,7 +444162,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461279,7 +444188,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461306,7 +444214,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461333,7 +444240,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461360,7 +444266,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461387,7 +444292,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461414,7 +444318,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461441,7 +444344,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461468,7 +444370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461495,7 +444396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461522,7 +444422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461549,7 +444448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461576,7 +444474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461603,7 +444500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461630,7 +444526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461657,7 +444552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461684,7 +444578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461711,7 +444604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461738,7 +444630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461765,7 +444656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461792,7 +444682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461819,7 +444708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461846,7 +444734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461873,7 +444760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461900,7 +444786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461927,7 +444812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461954,7 +444838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -461981,7 +444864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -462008,7 +444890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -462035,7 +444916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -462062,7 +444942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.379Z", @@ -462089,7 +444968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462116,7 +444994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462143,7 +445020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462170,7 +445046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462197,7 +445072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462224,7 +445098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462251,7 +445124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462278,7 +445150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462305,7 +445176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462332,7 +445202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462359,7 +445228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462386,7 +445254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462413,7 +445280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462440,7 +445306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462467,7 +445332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462494,7 +445358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462521,7 +445384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462548,7 +445410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462575,7 +445436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462602,7 +445462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462629,7 +445488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462656,7 +445514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462683,7 +445540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462710,7 +445566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462737,7 +445592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462764,7 +445618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462791,7 +445644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462818,7 +445670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462845,7 +445696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462872,7 +445722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462899,7 +445748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462926,7 +445774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462953,7 +445800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.380Z", @@ -462980,7 +445826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.381Z", @@ -463007,7 +445852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.381Z", @@ -463034,7 +445878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.381Z", @@ -463061,7 +445904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.381Z", @@ -463088,7 +445930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.381Z", @@ -463115,7 +445956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.381Z", @@ -463142,7 +445982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.381Z", @@ -463169,7 +446008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.381Z", @@ -463196,7 +446034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.381Z", @@ -463223,7 +446060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.381Z", @@ -463250,7 +446086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.381Z", @@ -463277,7 +446112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.381Z", @@ -463304,7 +446138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.381Z", @@ -463331,7 +446164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.381Z", @@ -463358,7 +446190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.381Z", @@ -463385,7 +446216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.381Z", @@ -463412,7 +446242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.381Z", @@ -463439,7 +446268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.381Z", @@ -463466,7 +446294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.381Z", @@ -463493,7 +446320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.381Z", @@ -463520,7 +446346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6637904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:12:56.381Z", @@ -463545,7 +446370,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.100Z", @@ -463572,7 +446396,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.133Z", @@ -463599,7 +446422,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -463626,7 +446448,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -463653,7 +446474,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -463680,7 +446500,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -463707,7 +446526,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -463734,7 +446552,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -463761,7 +446578,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -463788,7 +446604,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -463815,7 +446630,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -463842,7 +446656,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -463869,7 +446682,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -463896,7 +446708,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -463923,7 +446734,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -463950,7 +446760,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -463977,7 +446786,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464004,7 +446812,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464031,7 +446838,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464058,7 +446864,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464085,7 +446890,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464112,7 +446916,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464139,7 +446942,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464166,7 +446968,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464193,7 +446994,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464220,7 +447020,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464247,7 +447046,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464274,7 +447072,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464301,7 +447098,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464328,7 +447124,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464355,7 +447150,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464382,7 +447176,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464409,7 +447202,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464436,7 +447228,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464463,7 +447254,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464490,7 +447280,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464517,7 +447306,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464544,7 +447332,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464571,7 +447358,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464598,7 +447384,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464625,7 +447410,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.134Z", @@ -464652,7 +447436,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -464679,7 +447462,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -464706,7 +447488,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -464733,7 +447514,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -464760,7 +447540,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -464787,7 +447566,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -464814,7 +447592,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -464841,7 +447618,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -464868,7 +447644,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -464895,7 +447670,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -464922,7 +447696,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -464949,7 +447722,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -464976,7 +447748,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465003,7 +447774,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465030,7 +447800,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465057,7 +447826,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465084,7 +447852,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465111,7 +447878,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465138,7 +447904,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465165,7 +447930,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465192,7 +447956,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465219,7 +447982,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465246,7 +448008,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465273,7 +448034,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465300,7 +448060,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465327,7 +448086,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465354,7 +448112,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465381,7 +448138,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465408,7 +448164,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465435,7 +448190,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465462,7 +448216,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465489,7 +448242,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465516,7 +448268,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465543,7 +448294,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465570,7 +448320,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465597,7 +448346,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465624,7 +448372,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465651,7 +448398,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465678,7 +448424,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465705,7 +448450,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465732,7 +448476,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.135Z", @@ -465759,7 +448502,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.136Z", @@ -465786,7 +448528,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.136Z", @@ -465813,7 +448554,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.136Z", @@ -465840,7 +448580,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.136Z", @@ -465867,7 +448606,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.136Z", @@ -465894,7 +448632,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.136Z", @@ -465921,7 +448658,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.136Z", @@ -465948,7 +448684,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.136Z", @@ -465975,7 +448710,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.136Z", @@ -466002,7 +448736,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.136Z", @@ -466029,7 +448762,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.136Z", @@ -466056,7 +448788,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.136Z", @@ -466083,7 +448814,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.136Z", @@ -466110,7 +448840,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.136Z", @@ -466137,7 +448866,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.136Z", @@ -466164,7 +448892,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.136Z", @@ -466191,7 +448918,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.136Z", @@ -466218,7 +448944,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.136Z", @@ -466245,7 +448970,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.136Z", @@ -466272,7 +448996,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.136Z", @@ -466299,7 +449022,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.136Z", @@ -466326,7 +449048,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.136Z", @@ -466353,7 +449074,6 @@ "creatorId": "64378abd85008f171cf2990d", "admins": ["64378abd85008f171cf2990d"], "organization": "6737904485008f171cf29924", - "status": "ACTIVE", "volunteerGroups": [], "__v": 0, "createdAt": "2024-04-06T18:13:00.136Z", diff --git a/src/helpers/event/recurringEventHelpers/generateRecurringEventInstances.ts b/src/helpers/event/recurringEventHelpers/generateRecurringEventInstances.ts index d2e03b5314..e2c5ed32dc 100644 --- a/src/helpers/event/recurringEventHelpers/generateRecurringEventInstances.ts +++ b/src/helpers/event/recurringEventHelpers/generateRecurringEventInstances.ts @@ -29,7 +29,6 @@ interface InterfaceGenerateRecurringInstances { recurringInstanceDates: Date[]; creatorId: string; organizationId: string; - status?: string; session: mongoose.ClientSession; } @@ -40,7 +39,6 @@ export interface InterfaceRecurringEvent extends EventInput { creatorId?: string; admins?: string[]; organization?: string; - status?: string; } export const generateRecurringEventInstances = async ({ @@ -102,7 +100,6 @@ export const generateRecurringEventInstances = async ({ creatorId, admins: data.admins && data.admins.length ? data.admins : [creatorId], organization: organizationId, - status: data.status, }; recurringInstances.push(createdEventInstance); diff --git a/src/models/Event.ts b/src/models/Event.ts index cb7ab50179..55ae7fe476 100644 --- a/src/models/Event.ts +++ b/src/models/Event.ts @@ -35,7 +35,6 @@ export interface InterfaceEvent { recurring: boolean; startDate: string; startTime: string | undefined; - status: string; title: string; updatedAt: Date; volunteerGroups: PopulatedDoc[]; @@ -67,7 +66,6 @@ export interface InterfaceEvent { * @param recurring - Is the event recurring * @param startDate - Start Date * @param startTime - Start Time - * @param status - whether the event is active, blocked, or deleted. * @param title - Title of the event * @param updatedAt - Timestamp of event updation * @param volunteerGroups - event volunteer groups for the event @@ -182,12 +180,6 @@ const eventSchema = new Schema( ref: "Organization", required: true, }, - status: { - type: String, - required: true, - enum: ["ACTIVE", "BLOCKED", "DELETED"], - default: "ACTIVE", - }, volunteerGroups: [ { type: Schema.Types.ObjectId, diff --git a/src/resolvers/Query/event.ts b/src/resolvers/Query/event.ts index d28148dd6b..eccd5fdbb3 100644 --- a/src/resolvers/Query/event.ts +++ b/src/resolvers/Query/event.ts @@ -3,7 +3,7 @@ import { Event } from "../../models"; import { errors } from "../../libraries"; import { EVENT_NOT_FOUND_ERROR } from "../../constants"; /** - * This query will fetch the event with `ACTIVE` status from database. + * 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. @@ -13,7 +13,6 @@ import { EVENT_NOT_FOUND_ERROR } from "../../constants"; export const event: QueryResolvers["event"] = async (_parent, args) => { const event = await Event.findOne({ _id: args.id, - status: "ACTIVE", }) .populate("creatorId", "-password") .populate("admins", "-password") diff --git a/src/resolvers/Query/eventsByOrganization.ts b/src/resolvers/Query/eventsByOrganization.ts index bb675eb689..a4eefcbdcf 100644 --- a/src/resolvers/Query/eventsByOrganization.ts +++ b/src/resolvers/Query/eventsByOrganization.ts @@ -2,10 +2,10 @@ import type { QueryResolvers } from "../../types/generatedGraphQLTypes"; import { Event } from "../../models"; import { getSort } from "./helperFunctions/getSort"; /** - * This query will fetch all events for the organization which have `ACTIVE` status from database. + * 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 events with `ACTIVE` status for the Organization. + * @returns An `events` object that holds all the events for the Organization. */ export const eventsByOrganization: QueryResolvers["eventsByOrganization"] = async (_parent, args) => { @@ -13,7 +13,6 @@ export const eventsByOrganization: QueryResolvers["eventsByOrganization"] = const events = await Event.find({ organization: args.id, - status: "ACTIVE", }) .sort(sort) .populate("creatorId", "-password") diff --git a/src/resolvers/Query/eventsByOrganizationConnection.ts b/src/resolvers/Query/eventsByOrganizationConnection.ts index 3a5173eb54..73ee2cf55f 100644 --- a/src/resolvers/Query/eventsByOrganizationConnection.ts +++ b/src/resolvers/Query/eventsByOrganizationConnection.ts @@ -16,7 +16,6 @@ export const eventsByOrganizationConnection: QueryResolvers["eventsByOrganizatio where = { ...where, - status: "ACTIVE", isBaseRecurringEvent: false, }; diff --git a/src/resolvers/Query/registeredEventsByUser.ts b/src/resolvers/Query/registeredEventsByUser.ts index 8c5d145e2d..9f9c74ec8f 100644 --- a/src/resolvers/Query/registeredEventsByUser.ts +++ b/src/resolvers/Query/registeredEventsByUser.ts @@ -14,7 +14,6 @@ export const registeredEventsByUser: QueryResolvers["registeredEventsByUser"] = const sort = getSort(args.orderBy); return await Event.find({ - status: "ACTIVE", registrants: { $elemMatch: { userId: args.id, diff --git a/src/typeDefs/types.ts b/src/typeDefs/types.ts index 1738d67644..0ce4610ae0 100644 --- a/src/typeDefs/types.ts +++ b/src/typeDefs/types.ts @@ -274,7 +274,6 @@ export const types = gql` attendeesCheckInStatus: [CheckInStatus!]! actionItems: [ActionItem] admins(adminId: ID): [User!] - status: Status! feedback: [Feedback!]! averageFeedbackScore: Float agendaItems: [AgendaItem] diff --git a/src/types/generatedGraphQLTypes.ts b/src/types/generatedGraphQLTypes.ts index ac5039ff85..05a3b8de1d 100644 --- a/src/types/generatedGraphQLTypes.ts +++ b/src/types/generatedGraphQLTypes.ts @@ -715,7 +715,6 @@ export type Event = { recurring: Scalars['Boolean']['output']; startDate: Scalars['Date']['output']; startTime?: Maybe; - status: Status; title: Scalars['String']['output']; updatedAt: Scalars['DateTime']['output']; }; @@ -3874,7 +3873,6 @@ export type EventResolvers; startDate?: Resolver; startTime?: Resolver, ParentType, ContextType>; - status?: Resolver; title?: Resolver; updatedAt?: Resolver; __isTypeOf?: IsTypeOfResolverFn; diff --git a/src/utilities/createSampleOrganizationUtil.ts b/src/utilities/createSampleOrganizationUtil.ts index 80600ee28b..f6523de23a 100644 --- a/src/utilities/createSampleOrganizationUtil.ts +++ b/src/utilities/createSampleOrganizationUtil.ts @@ -106,7 +106,6 @@ export const generateEventData = async ( creatorId: faker.helpers.arrayElement(users)._id, admins: [faker.helpers.arrayElement(users)._id], organization: organizationId, - status: "ACTIVE", }); await event.save(); diff --git a/tests/resolvers/Query/event.spec.ts b/tests/resolvers/Query/event.spec.ts index 5e440c9206..8f192d3eae 100644 --- a/tests/resolvers/Query/event.spec.ts +++ b/tests/resolvers/Query/event.spec.ts @@ -27,7 +27,7 @@ afterAll(async () => { }); describe("resolvers -> Query -> event", () => { - it(`throws NotFoundError if no event exists with _id === args.id and event.status === 'ACTIVE'`, async () => { + it(`throws NotFoundError if no event exists with _id === args.id`, async () => { try { const args: QueryEventArgs = { id: new Types.ObjectId().toString(), diff --git a/tests/resolvers/Query/eventsByOrganization.spec.ts b/tests/resolvers/Query/eventsByOrganization.spec.ts index 10233f1a49..f94f56259c 100644 --- a/tests/resolvers/Query/eventsByOrganization.spec.ts +++ b/tests/resolvers/Query/eventsByOrganization.spec.ts @@ -54,7 +54,6 @@ describe("resolvers -> Query -> eventsByOrganization", () => { const eventsByOrganizationInfo = await Event.find({ organization: testOrganization?._id, - status: "ACTIVE", }) .sort({ _id: 1, diff --git a/tests/resolvers/Query/eventsByOrganizationConnection.spec.ts b/tests/resolvers/Query/eventsByOrganizationConnection.spec.ts index cc5a3d75c4..674ad19e97 100644 --- a/tests/resolvers/Query/eventsByOrganizationConnection.spec.ts +++ b/tests/resolvers/Query/eventsByOrganizationConnection.spec.ts @@ -66,26 +66,6 @@ afterAll(async () => { }); describe("resolvers -> Query -> organizationsMemberConnection", () => { - it(`Just retrieve events with status = ACTIVE when no specific input argument is passed`, async () => { - const args: QueryEventsByOrganizationConnectionArgs = { - first: 1, - skip: 1, - where: null, - orderBy: null, - }; - const events = await Event.find({ - status: "ACTIVE", - }) - .limit(1) - .skip(1) - .populate("creatorId", "-password") - .populate("admins", "-password") - .lean(); - - const eventsByOrganizationConnectionPayload = - await eventsByOrganizationConnectionResolver?.({}, args, {}); - expect(eventsByOrganizationConnectionPayload).toEqual(events); - }); it(`returns list of all existing events filtered by args.where === { id: testEvent[1]._id, title: testEvents[1].title, description:testEvents[1].description, organization: testEvents[1].organization._id, location: testEvents[1].location} and sorted by ascending order of event._id if args.orderBy === 'id_ASC'`, async () => { diff --git a/tests/resolvers/Query/registeredEventsByUser.spec.ts b/tests/resolvers/Query/registeredEventsByUser.spec.ts index 695552575b..1dbcbdeb16 100644 --- a/tests/resolvers/Query/registeredEventsByUser.spec.ts +++ b/tests/resolvers/Query/registeredEventsByUser.spec.ts @@ -29,7 +29,6 @@ describe("resolvers -> Query -> events", () => { }; const registeredEventsByUser = await Event.find({ - status: "ACTIVE", registrants: { $elemMatch: { userId: testUser?._id, @@ -58,7 +57,6 @@ describe("resolvers -> Query -> events", () => { }; const registeredEventsByUser = await Event.find({ - status: "ACTIVE", registrants: { $elemMatch: { userId: testUser?._id, @@ -87,7 +85,6 @@ describe("resolvers -> Query -> events", () => { }; const registeredEventsByUser = await Event.find({ - status: "ACTIVE", registrants: { $elemMatch: { userId: testUser?._id, @@ -116,7 +113,6 @@ describe("resolvers -> Query -> events", () => { }; const registeredEventsByUser = await Event.find({ - status: "ACTIVE", registrants: { $elemMatch: { userId: testUser?._id, @@ -145,7 +141,6 @@ describe("resolvers -> Query -> events", () => { }; const registeredEventsByUser = await Event.find({ - status: "ACTIVE", registrants: { $elemMatch: { userId: testUser?._id, @@ -174,7 +169,6 @@ describe("resolvers -> Query -> events", () => { }; const registeredEventsByUser = await Event.find({ - status: "ACTIVE", registrants: { $elemMatch: { userId: testUser?._id, @@ -203,7 +197,6 @@ describe("resolvers -> Query -> events", () => { }; const registeredEventsByUser = await Event.find({ - status: "ACTIVE", registrants: { $elemMatch: { userId: testUser?._id, @@ -232,7 +225,6 @@ describe("resolvers -> Query -> events", () => { }; const registeredEventsByUser = await Event.find({ - status: "ACTIVE", registrants: { $elemMatch: { userId: testUser?._id, @@ -261,7 +253,6 @@ describe("resolvers -> Query -> events", () => { }; const registeredEventsByUser = await Event.find({ - status: "ACTIVE", registrants: { $elemMatch: { userId: testUser?._id, @@ -290,7 +281,6 @@ describe("resolvers -> Query -> events", () => { }; const registeredEventsByUser = await Event.find({ - status: "ACTIVE", registrants: { $elemMatch: { userId: testUser?._id, @@ -319,7 +309,6 @@ describe("resolvers -> Query -> events", () => { }; const registeredEventsByUser = await Event.find({ - status: "ACTIVE", registrants: { $elemMatch: { userId: testUser?._id, @@ -346,7 +335,6 @@ describe("resolvers -> Query -> events", () => { }; const registeredEventsByUser = await Event.find({ - status: "ACTIVE", registrants: { $elemMatch: { userId: testUser?._id, @@ -375,7 +363,6 @@ describe("resolvers -> Query -> events", () => { }; const registeredEventsByUser = await Event.find({ - status: "ACTIVE", registrants: { $elemMatch: { userId: testUser?._id, @@ -404,7 +391,6 @@ describe("resolvers -> Query -> events", () => { }; const registeredEventsByUser = await Event.find({ - status: "ACTIVE", registrants: { $elemMatch: { userId: testUser?._id, @@ -433,7 +419,6 @@ describe("resolvers -> Query -> events", () => { }; const registeredEventsByUser = await Event.find({ - status: "ACTIVE", registrants: { $elemMatch: { userId: testUser?._id, @@ -462,7 +447,6 @@ describe("resolvers -> Query -> events", () => { }; const registeredEventsByUser = await Event.find({ - status: "ACTIVE", registrants: { $elemMatch: { userId: testUser?._id, @@ -491,7 +475,6 @@ describe("resolvers -> Query -> events", () => { }; const registeredEventsByUser = await Event.find({ - status: "ACTIVE", registrants: { $elemMatch: { userId: testUser?._id, @@ -520,7 +503,6 @@ describe("resolvers -> Query -> events", () => { }; const registeredEventsByUser = await Event.find({ - status: "ACTIVE", registrants: { $elemMatch: { userId: testUser?._id, @@ -549,7 +531,6 @@ describe("resolvers -> Query -> events", () => { }; const registeredEventsByUser = await Event.find({ - status: "ACTIVE", registrants: { $elemMatch: { userId: testUser?._id, diff --git a/tests/utilities/createSampleOrganizationUtil.spec.ts b/tests/utilities/createSampleOrganizationUtil.spec.ts index 13ec1fa151..6e33feab9c 100644 --- a/tests/utilities/createSampleOrganizationUtil.spec.ts +++ b/tests/utilities/createSampleOrganizationUtil.spec.ts @@ -91,7 +91,6 @@ describe("generateUserData function", () => { expect(event.creatorId.toString()).toEqual(expect.any(String)); expect(event.admins).toEqual(expect.any(Array)); expect(event.organization.toString()).toEqual(expect.any(String)); - expect(event.status).toEqual(expect.any(String)); }); }); From e6533478ecf8f52916cee8552ea4310a209f6a3f Mon Sep 17 00:00:00 2001 From: Vamshi Maskuri <117595548+varshith257@users.noreply.github.com> Date: Mon, 22 Apr 2024 00:43:12 +0530 Subject: [PATCH 08/16] Docker support for multi stage builds for Dev and Prod environments (#1885) * Updated typscript eslint parser to v6.19.0 * updated lint:check script to run both graphql and typescipt linting in single run * Update README.md * Update README.md * updated all related packages * Merge changes from origin/develop into my-changes * updated * Update README.md * Updated package.json * Updated package.json * multi-stage build docker support * Update Dockerfile.dev and docker-compose.yaml * Updated Dockerfile and docker-compose for dev env * Rename docker-compose.yaml to docker-compose.dev.yaml * Update Dockerfile.dev * Updated docker files for production environment * Merge changes from origin/docker-support * Revert "Merge branch 'docker-support' of https://github.com/varshith257/talawa-api into docker-support" * Updated docker files for production environment * Update docker-compose.dev.yaml * Add docker folder * Revert "Add docker folder" This reverts commit a35279757c5aa4b76abb80f6df28aeceaa27774a. * Moved docker files to docker folder * Moved docker files to root dir * moved docker files to root dir * moved docker files to root * Revert "Moved docker files to root dir" This reverts commit 36ddb95eefe29ffa04651d371b9583595b4af5f0. * Revert "moved docker files to root dir" This reverts commit 957ea8867cef811a99c94ef26bc0b139913fb43b. * Revert "Moved docker files to root dir" This reverts commit 36ddb95eefe29ffa04651d371b9583595b4af5f0. * final updated docker files * Updated Docker Files * Updated Installation.md * Revert "Updated Installation.md" This reverts commit 64c593c8e87cb983983adc79d2ebb455aec400cf. * Updated Installation.md --------- Co-authored-by: Peter Harrison <16875803+palisadoes@users.noreply.github.com> --- .dockerignore | 8 +++ Dockerfile | 13 ---- Dockerfile.dev | 21 ++++++ Dockerfile.prod | 25 +++++++ INSTALLATION.md | 68 ++++++++++++++----- docker-compose.dev.yaml | 37 ++++++++++ ...r-compose.yaml => docker-compose.prod.yaml | 8 ++- tsconfig.build.json | 6 +- 8 files changed, 151 insertions(+), 35 deletions(-) create mode 100644 .dockerignore delete mode 100644 Dockerfile create mode 100644 Dockerfile.dev create mode 100644 Dockerfile.prod create mode 100644 docker-compose.dev.yaml rename docker-compose.yaml => docker-compose.prod.yaml (82%) diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000000..a844e08949 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,8 @@ +node_modules +videos +.env +.git +.gitignore +.dockerignore +Dockerfile.dev +Dockerfile.prod \ No newline at end of file diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 7080aa5ccc..0000000000 --- a/Dockerfile +++ /dev/null @@ -1,13 +0,0 @@ -FROM node:lts - -WORKDIR /usr/src/app - -COPY package*.json ./ - -RUN npm install - -COPY . . - -EXPOSE 4000 - -CMD ["npm", "run", "dev"] \ No newline at end of file diff --git a/Dockerfile.dev b/Dockerfile.dev new file mode 100644 index 0000000000..2057c9d6cc --- /dev/null +++ b/Dockerfile.dev @@ -0,0 +1,21 @@ +# Stage 1: Install Dependencies +FROM node:lts AS builder + +WORKDIR /usr/src/app + +COPY package.json ./ + +RUN npm install + +COPY . . + +# Stage 2: Final image +FROM node:lts-bookworm-slim + +WORKDIR /usr/src/app + +COPY --from=builder /usr/src/app ./ + +EXPOSE 4000 + +CMD ["npm", "run", "dev"] diff --git a/Dockerfile.prod b/Dockerfile.prod new file mode 100644 index 0000000000..81c57702e3 --- /dev/null +++ b/Dockerfile.prod @@ -0,0 +1,25 @@ +# 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 index 89cd99eafa..1549967cd0 100644 --- a/INSTALLATION.md +++ b/INSTALLATION.md @@ -12,9 +12,14 @@ This document provides instructions on how to set up and start a running instanc - [Install TypeScript](#install-typescript) - [Install git](#install-git) - [Setting up this repository](#setting-up-this-repository) - - [Install the Required Packages](#install-the-required-packages) - [Installation Using Docker](#installation-using-docker) + - [Prerequisites](#prerequisites-1) + - [Docker Compose Setup](#docker-compose-setup) + - [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) - [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) @@ -134,30 +139,49 @@ This will setup the repository and the code files locally for you. For more deta `NOTE: All the commands we're going to execute in the following instructions will assume you are in the root directory of the project. If you fail to do so, the commands will not work.` -## Install the Required Packages +# Installation Using Docker -Install the packages required by `talawa-api` using this command: +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. -``` -npm install -``` +## Prerequisites +- [Docker Desktop](https://www.docker.com/products/docker-desktop) installed on your machine. -# Installation Using Docker +## Docker Compose Setup -> - **Requires Docker and Docker Compose to be installed** -> - Will start a local mongodb and redis instances +### For Development -Now use the following command to run docker containers - +1. **Build and Start Development Containers:** + ``` + 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. -```sh -docker compose up -``` +2. **Access the Development Application:** + Open your web browser and navigate to [http://localhost:4000](http://localhost:4000). -OR +3. **Stopping Development Containers:** + ``` + docker-compose -f docker-compose.dev.yml down + ``` + +### For Production + +1. **Build and Start Production Containers:** + ``` + docker-compose -f docker-compose.prod.yml up --build -d + ``` + This command starts the production environment in detached mode, suitable for production deployment. + +2. **Access the Production Application:** + Open your web browser and navigate to [http://localhost:4001](http://localhost:4001). + +3. **Stopping Production Containers:** + ``` + docker-compose -f docker-compose.prod.yml down + ``` + +### Congratulations! 🎉 Your Talawa API is now successfully set up and running using Docker! -```sh -docker-compose up -``` **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)** @@ -165,6 +189,14 @@ docker-compose up 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. @@ -795,4 +827,4 @@ Talawa-api makes use of `vitest` to run tests because it is much faster than `je You can run the tests for talawa-api using this command: - npm run test + npm run test \ No newline at end of file diff --git a/docker-compose.dev.yaml b/docker-compose.dev.yaml new file mode 100644 index 0000000000..66e556decf --- /dev/null +++ b/docker-compose.dev.yaml @@ -0,0 +1,37 @@ +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-container: + build: + context: . + dockerfile: Dockerfile.dev + ports: + - 4000:4000 + 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 + +volumes: + mongodb-data: + redis-data: diff --git a/docker-compose.yaml b/docker-compose.prod.yaml similarity index 82% rename from docker-compose.yaml rename to docker-compose.prod.yaml index 71af3687d3..ef2448c104 100644 --- a/docker-compose.yaml +++ b/docker-compose.prod.yaml @@ -1,3 +1,5 @@ +version: '3.8' + services: mongodb: image: mongo:latest @@ -13,8 +15,10 @@ services: volumes: - redis-data:/data/redis - talawa-api-container: - build: . + talawa-api-prod-container: + build: + context: . + dockerfile: Dockerfile.prod ports: - 4000:4000 depends_on: diff --git a/tsconfig.build.json b/tsconfig.build.json index a0829eeaed..585f672cae 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -1,14 +1,16 @@ { "compilerOptions": { "target": "es2016" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */, - "module": "commonjs" /* Specify what module code is generated. */, + "module": "CommonJS", // Change this line + // "moduleResolution": "node", "rootDir": "./src" /* Specify the root folder within your source files. */, "outDir": "./build" /* Specify an output folder for all emitted files. */, "removeComments": true /* Disable emitting comments. */, "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */, "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */, "strict": true /* Enable all strict type-checking options. */, - "skipLibCheck": true /* Skip type checking all .d.ts files. */ + "skipLibCheck": true /* Skip type checking all .d.ts files. */, + "resolveJsonModule": true /* Allow to import JSON files */ }, "include": ["./src"] } From ff670814c901b2b7e3707449bce404e250aa978f Mon Sep 17 00:00:00 2001 From: Neyati <116624667+Doraemon012@users.noreply.github.com> Date: Mon, 22 Apr 2024 04:26:26 +0530 Subject: [PATCH 09/16] fix: Fixed error in UnblockUser mutation (#2243) * fix: Fixed error in UnblockUser mutation * Added tests --- src/resolvers/Mutation/unblockUser.ts | 4 +-- tests/resolvers/Mutation/unblockUser.spec.ts | 35 +++++++++++--------- 2 files changed, 22 insertions(+), 17 deletions(-) diff --git a/src/resolvers/Mutation/unblockUser.ts b/src/resolvers/Mutation/unblockUser.ts index 04af993f0d..e6cde9b989 100644 --- a/src/resolvers/Mutation/unblockUser.ts +++ b/src/resolvers/Mutation/unblockUser.ts @@ -55,11 +55,11 @@ export const unblockUser: MutationResolvers["unblockUser"] = async ( // ensure user exists let user: InterfaceUser | null; - const userFoundInCache = await findUserInCache([context.userId]); + const userFoundInCache = await findUserInCache([args.userId]); user = userFoundInCache[0]; if (user === null) { user = await User.findOne({ - _id: context.userId, + _id: args.userId, }).lean(); if (user !== null) { await cacheUsers([user]); diff --git a/tests/resolvers/Mutation/unblockUser.spec.ts b/tests/resolvers/Mutation/unblockUser.spec.ts index 018629161c..184b66b745 100644 --- a/tests/resolvers/Mutation/unblockUser.spec.ts +++ b/tests/resolvers/Mutation/unblockUser.spec.ts @@ -17,10 +17,14 @@ import type { TestOrganizationType, TestUserType, } from "../../helpers/userAndOrg"; -import { createTestUserAndOrganization } from "../../helpers/userAndOrg"; +import { + createTestUserAndOrganization, + createTestUser, +} from "../../helpers/userAndOrg"; let MONGOOSE_INSTANCE: typeof mongoose; let testUser: TestUserType; +let testUser2: TestUserType; let testOrganization: TestOrganizationType; beforeAll(async () => { @@ -28,6 +32,7 @@ beforeAll(async () => { const temp = await createTestUserAndOrganization(); testUser = temp[0]; testOrganization = temp[1]; + testUser2 = await createTestUser(); }); afterAll(async () => { @@ -97,7 +102,7 @@ describe("resolvers -> Mutation -> unblockUser", () => { try { const args: MutationUnblockUserArgs = { organizationId: testOrganization?.id, - userId: testUser?.id, + userId: testUser2?.id, }; const context = { @@ -148,7 +153,7 @@ describe("resolvers -> Mutation -> unblockUser", () => { const args: MutationUnblockUserArgs = { organizationId: testOrganization?.id, - userId: testUser?.id, + userId: testUser2?.id, }; const context = { @@ -177,7 +182,7 @@ describe("resolvers -> Mutation -> unblockUser", () => { }, { $push: { - blockedUsers: testUser?._id, + blockedUsers: testUser2?._id, }, $set: { userRegistrationRequired: true, @@ -193,7 +198,7 @@ describe("resolvers -> Mutation -> unblockUser", () => { updatedOrganization.userRegistrationRequired === true ) { const createdMembershipRequest = await MembershipRequest.create({ - user: testUser?._id, + user: testUser2?._id, organization: testOrganization?._id, }); @@ -213,7 +218,7 @@ describe("resolvers -> Mutation -> unblockUser", () => { await User.updateOne( { - _id: testUser?._id, + _id: testUser2?._id, }, { $push: { @@ -229,7 +234,7 @@ describe("resolvers -> Mutation -> unblockUser", () => { await User.updateOne( { - _id: testUser?.id, + _id: testUser2?.id, }, { $push: { @@ -240,7 +245,7 @@ describe("resolvers -> Mutation -> unblockUser", () => { const args: MutationUnblockUserArgs = { organizationId: testOrganization?.id, - userId: testUser?.id, + userId: testUser2?.id, }; const context = { @@ -250,7 +255,7 @@ describe("resolvers -> Mutation -> unblockUser", () => { const unblockUserPayload = await unblockUserResolver?.({}, args, context); const testUnblockUserPayload = await User.findOne({ - _id: testUser?.id, + _id: testUser2?.id, }) .select(["-password"]) .lean(); @@ -267,7 +272,7 @@ describe("resolvers -> Mutation -> unblockUser", () => { }, { $push: { - blockedUsers: testUser?._id, + blockedUsers: testUser2?._id, }, $set: { userRegistrationRequired: false, @@ -288,7 +293,7 @@ describe("resolvers -> Mutation -> unblockUser", () => { }, { $push: { - members: testUser?._id, + members: testUser2?._id, }, }, { @@ -298,7 +303,7 @@ describe("resolvers -> Mutation -> unblockUser", () => { await User.updateOne( { - _id: testUser?._id, + _id: testUser2?._id, }, { $push: { @@ -314,7 +319,7 @@ describe("resolvers -> Mutation -> unblockUser", () => { await User.updateOne( { - _id: testUser?.id, + _id: testUser2?.id, }, { $push: { @@ -325,7 +330,7 @@ describe("resolvers -> Mutation -> unblockUser", () => { const args: MutationUnblockUserArgs = { organizationId: testOrganization?.id, - userId: testUser?.id, + userId: testUser2?.id, }; const context = { @@ -335,7 +340,7 @@ describe("resolvers -> Mutation -> unblockUser", () => { const unblockUserPayload = await unblockUserResolver?.({}, args, context); const testUnblockUserPayload = await User.findOne({ - _id: testUser?.id, + _id: testUser2?.id, }) .select(["-password"]) .lean(); From 3f595035067961274887dc7d39679cdcadeccdc3 Mon Sep 17 00:00:00 2001 From: Mallepally Lokeshwar Reddy Date: Mon, 22 Apr 2024 14:38:47 +0530 Subject: [PATCH 10/16] fix minor bug: ensure single database connection on server startup (#2240) * Fix MongoDB URI in loadPlugin function * Implement connection check before establishing new database connection * Replace isConnected variable with mongoose.connection.readyState check * Add check comments to db.ts file --- src/config/plugins/loadPlugins.ts | 2 +- src/db.ts | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/src/config/plugins/loadPlugins.ts b/src/config/plugins/loadPlugins.ts index 896a36da63..06c1284731 100644 --- a/src/config/plugins/loadPlugins.ts +++ b/src/config/plugins/loadPlugins.ts @@ -6,7 +6,7 @@ import mongoose from "mongoose"; // Only loads plugin data for the time if it's not currently present in the database const loadPlugins = async (): Promise => { try { - await mongoose.connect(process.env.MONGO_URI as string); + await mongoose.connect(process.env.MONGO_DB_URL as string); logger.info("\x1b[1m\x1b[32m%s\x1b[0m", `Connected to the database`); const res = await Plugin.find(); const databaseTitle = mongoose.connection.db.databaseName; diff --git a/src/db.ts b/src/db.ts index 8562cb7fd7..374dd85f03 100644 --- a/src/db.ts +++ b/src/db.ts @@ -6,6 +6,12 @@ import { checkReplicaSet } from "./utilities/checkReplicaSet"; let session!: mongoose.ClientSession; export const connect = async (dbName?: string): Promise => { + // firstly we check if a connection to the database already exists. + if (mongoose.connection.readyState !== 0) { + // if the connection state is not 0, it means a connection already exists so we return. + return; + } + // if no connection exists, we try to establish a new connection. try { await mongoose.connect(MONGO_DB_URL as string, { dbName, @@ -52,6 +58,10 @@ export const connect = async (dbName?: string): Promise => { }; 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(); }; From 53e08d5ac454215a485aed90386e72ab5901c692 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Apr 2024 05:13:58 -0400 Subject: [PATCH 11/16] chore(deps): bump @typescript-eslint/parser from 7.6.0 to 7.7.0 (#2247) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 7.6.0 to 7.7.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.7.0/packages/parser) --- updated-dependencies: - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 118 ++++++++++++++++++++++++++++++++++++++++++---- package.json | 2 +- 2 files changed, 111 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index 5ebf6c7aeb..1ba5367db6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -88,7 +88,7 @@ "@types/uuid": "^9.0.7", "@types/validator": "^13.11.9", "@typescript-eslint/eslint-plugin": "^7.6.0", - "@typescript-eslint/parser": "^7.6.0", + "@typescript-eslint/parser": "^7.7.0", "@vitest/coverage-v8": "^1.5.0", "cls-bluebird": "^2.1.0", "concurrently": "^8.2.2", @@ -6375,15 +6375,15 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.6.0.tgz", - "integrity": "sha512-usPMPHcwX3ZoPWnBnhhorc14NJw9J4HpSXQX4urF2TPKG0au0XhJoZyX62fmvdHONUkmyUe74Hzm1//XA+BoYg==", + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.7.0.tgz", + "integrity": "sha512-fNcDm3wSwVM8QYL4HKVBggdIPAy9Q41vcvC/GtDobw3c4ndVT3K6cqudUmjHPw8EAp4ufax0o58/xvWaP2FmTg==", "dev": true, "dependencies": { - "@typescript-eslint/scope-manager": "7.6.0", - "@typescript-eslint/types": "7.6.0", - "@typescript-eslint/typescript-estree": "7.6.0", - "@typescript-eslint/visitor-keys": "7.6.0", + "@typescript-eslint/scope-manager": "7.7.0", + "@typescript-eslint/types": "7.7.0", + "@typescript-eslint/typescript-estree": "7.7.0", + "@typescript-eslint/visitor-keys": "7.7.0", "debug": "^4.3.4" }, "engines": { @@ -6402,6 +6402,108 @@ } } }, + "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/scope-manager": { + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.7.0.tgz", + "integrity": "sha512-/8INDn0YLInbe9Wt7dK4cXLDYp0fNHP5xKLHvZl3mOT5X17rK/YShXaiNmorl+/U4VKCVIjJnx4Ri5b0y+HClw==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "7.7.0", + "@typescript-eslint/visitor-keys": "7.7.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/types": { + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.7.0.tgz", + "integrity": "sha512-G01YPZ1Bd2hn+KPpIbrAhEWOn5lQBrjxkzHkWvP6NucMXFtfXoevK82hzQdpfuQYuhkvFDeQYbzXCjR1z9Z03w==", + "dev": true, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/typescript-estree": { + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.7.0.tgz", + "integrity": "sha512-8p71HQPE6CbxIBy2kWHqM1KGrC07pk6RJn40n0DSc6bMOBBREZxSDJ+BmRzc8B5OdaMh1ty3mkuWRg4sCFiDQQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "7.7.0", + "@typescript-eslint/visitor-keys": "7.7.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.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/visitor-keys": { + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.7.0.tgz", + "integrity": "sha512-h0WHOj8MhdhY8YWkzIF30R379y0NqyOHExI9N9KCzvmu05EgG4FumeYa3ccfKUSphyWkWQE1ybVrgz/Pbam6YA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "7.7.0", + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/parser/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/@typescript-eslint/parser/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/@typescript-eslint/scope-manager": { "version": "7.6.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.6.0.tgz", diff --git a/package.json b/package.json index ee13943590..6ff9bd5ae8 100644 --- a/package.json +++ b/package.json @@ -122,7 +122,7 @@ "@types/uuid": "^9.0.7", "@types/validator": "^13.11.9", "@typescript-eslint/eslint-plugin": "^7.6.0", - "@typescript-eslint/parser": "^7.6.0", + "@typescript-eslint/parser": "^7.7.0", "@vitest/coverage-v8": "^1.5.0", "cls-bluebird": "^2.1.0", "concurrently": "^8.2.2", From f7a0d019ae44a3fb094efb2d043055e2e23cf56b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Apr 2024 05:15:12 -0400 Subject: [PATCH 12/16] chore(deps): bump @types/node from 20.12.5 to 20.12.7 (#2252) Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.12.5 to 20.12.7. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 1ba5367db6..5233cc230b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -83,7 +83,7 @@ "@types/lodash": "^4.17.0", "@types/mongoose-paginate-v2": "^1.6.5", "@types/morgan": "^1.9.9", - "@types/node": "^20.12.5", + "@types/node": "^20.12.7", "@types/nodemailer": "^6.4.14", "@types/uuid": "^9.0.7", "@types/validator": "^13.11.9", @@ -6154,9 +6154,9 @@ } }, "node_modules/@types/node": { - "version": "20.12.5", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.5.tgz", - "integrity": "sha512-BD+BjQ9LS/D8ST9p5uqBxghlN+S42iuNxjsUGjeZobe/ciXzk2qb1B6IXc6AnRLS+yFJRpN2IPEHMzwspfDJNw==", + "version": "20.12.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.7.tgz", + "integrity": "sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==", "dependencies": { "undici-types": "~5.26.4" } diff --git a/package.json b/package.json index 6ff9bd5ae8..4ed99062de 100644 --- a/package.json +++ b/package.json @@ -117,7 +117,7 @@ "@types/lodash": "^4.17.0", "@types/mongoose-paginate-v2": "^1.6.5", "@types/morgan": "^1.9.9", - "@types/node": "^20.12.5", + "@types/node": "^20.12.7", "@types/nodemailer": "^6.4.14", "@types/uuid": "^9.0.7", "@types/validator": "^13.11.9", From 436f609f30433f1c21fbd8e21938db8268e78ca3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Apr 2024 05:15:48 -0400 Subject: [PATCH 13/16] chore(deps): bump mongoose from 8.3.1 to 8.3.2 (#2248) Bumps [mongoose](https://github.com/Automattic/mongoose) from 8.3.1 to 8.3.2. - [Release notes](https://github.com/Automattic/mongoose/releases) - [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md) - [Commits](https://github.com/Automattic/mongoose/compare/8.3.1...8.3.2) --- updated-dependencies: - dependency-name: mongoose dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 5233cc230b..0ee98eb2aa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -47,7 +47,7 @@ "lodash": "^4.17.21", "markdown-toc": "^1.2.0", "mongodb": "^6.3.0", - "mongoose": "^8.3.1", + "mongoose": "^8.3.2", "mongoose-paginate-v2": "^1.8.0", "morgan": "^1.10.0", "nanoid": "^5.0.7", @@ -13297,9 +13297,9 @@ } }, "node_modules/mongoose": { - "version": "8.3.1", - "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-8.3.1.tgz", - "integrity": "sha512-D78C+s7QI4+pJQhs3XbOxzrHFEti4x+BDhaH94QrdV1/cmMA7fHc50LgLSXjzA/5q89TBK8DAXyf3VwDZbQJlA==", + "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", diff --git a/package.json b/package.json index 4ed99062de..bc7a88e1d0 100644 --- a/package.json +++ b/package.json @@ -81,7 +81,7 @@ "lodash": "^4.17.21", "markdown-toc": "^1.2.0", "mongodb": "^6.3.0", - "mongoose": "^8.3.1", + "mongoose": "^8.3.2", "mongoose-paginate-v2": "^1.8.0", "morgan": "^1.10.0", "nanoid": "^5.0.7", From 8216ba5c08b9c0395e665808a1b73c65005e37d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Apr 2024 05:16:19 -0400 Subject: [PATCH 14/16] chore(deps): bump @graphql-tools/utils from 10.1.2 to 10.1.3 (#2250) Bumps [@graphql-tools/utils](https://github.com/ardatan/graphql-tools/tree/HEAD/packages/utils) from 10.1.2 to 10.1.3. - [Release notes](https://github.com/ardatan/graphql-tools/releases) - [Changelog](https://github.com/ardatan/graphql-tools/blob/master/packages/utils/CHANGELOG.md) - [Commits](https://github.com/ardatan/graphql-tools/commits/@graphql-tools/utils@10.1.3/packages/utils) --- updated-dependencies: - dependency-name: "@graphql-tools/utils" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 0ee98eb2aa..3fbd83fa72 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14,7 +14,7 @@ "@graphql-inspector/cli": "^4.0.3", "@graphql-tools/resolvers-composition": "^7.0.1", "@graphql-tools/schema": "^10.0.0", - "@graphql-tools/utils": "^10.1.0", + "@graphql-tools/utils": "^10.1.3", "@parcel/watcher": "^2.4.1", "@types/graphql-upload": "^16.0.5", "@types/yargs": "^17.0.32", @@ -4210,9 +4210,9 @@ "dev": true }, "node_modules/@graphql-tools/utils": { - "version": "10.1.2", - "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-10.1.2.tgz", - "integrity": "sha512-fX13CYsDnX4yifIyNdiN0cVygz/muvkreWWem6BBw130+ODbRRgfiVveL0NizCEnKXkpvdeTy9Bxvo9LIKlhrw==", + "version": "10.1.3", + "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-10.1.3.tgz", + "integrity": "sha512-loco2ctrrMQzdpSHbcOo6+Ecp21BV67cQ2pNGhuVKAexruu01RdLn3LgtK47B9BpLz3cUD6U0u1R0rur7xMOOg==", "dependencies": { "@graphql-typed-document-node/core": "^3.1.1", "cross-inspect": "1.0.0", diff --git a/package.json b/package.json index bc7a88e1d0..31274d7ddf 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,7 @@ "@graphql-inspector/cli": "^4.0.3", "@graphql-tools/resolvers-composition": "^7.0.1", "@graphql-tools/schema": "^10.0.0", - "@graphql-tools/utils": "^10.1.0", + "@graphql-tools/utils": "^10.1.3", "@parcel/watcher": "^2.4.1", "@types/graphql-upload": "^16.0.5", "@types/yargs": "^17.0.32", From 867c51c7347041560dfe485e5d234bfe2590749c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Apr 2024 05:56:18 -0400 Subject: [PATCH 15/16] chore(deps): bump @typescript-eslint/eslint-plugin from 7.6.0 to 7.7.0 (#2251) Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 7.6.0 to 7.7.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.7.0/packages/eslint-plugin) --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 166 +++++++++------------------------------------- package.json | 2 +- 2 files changed, 33 insertions(+), 135 deletions(-) diff --git a/package-lock.json b/package-lock.json index 3fbd83fa72..0a70d8c1b4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -87,7 +87,7 @@ "@types/nodemailer": "^6.4.14", "@types/uuid": "^9.0.7", "@types/validator": "^13.11.9", - "@typescript-eslint/eslint-plugin": "^7.6.0", + "@typescript-eslint/eslint-plugin": "^7.7.0", "@typescript-eslint/parser": "^7.7.0", "@vitest/coverage-v8": "^1.5.0", "cls-bluebird": "^2.1.0", @@ -6313,16 +6313,16 @@ "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.6.0.tgz", - "integrity": "sha512-gKmTNwZnblUdnTIJu3e9kmeRRzV2j1a/LUO27KNNAnIC5zjy1aSvXSRp4rVNlmAoHlQ7HzX42NbKpcSr4jF80A==", + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.7.0.tgz", + "integrity": "sha512-GJWR0YnfrKnsRoluVO3PRb9r5aMZriiMMM/RHj5nnTrBy1/wIgk76XCtCKcnXGjpZQJQRFtGV9/0JJ6n30uwpQ==", "dev": true, "dependencies": { "@eslint-community/regexpp": "^4.10.0", - "@typescript-eslint/scope-manager": "7.6.0", - "@typescript-eslint/type-utils": "7.6.0", - "@typescript-eslint/utils": "7.6.0", - "@typescript-eslint/visitor-keys": "7.6.0", + "@typescript-eslint/scope-manager": "7.7.0", + "@typescript-eslint/type-utils": "7.7.0", + "@typescript-eslint/utils": "7.7.0", + "@typescript-eslint/visitor-keys": "7.7.0", "debug": "^4.3.4", "graphemer": "^1.4.0", "ignore": "^5.3.1", @@ -6402,7 +6402,7 @@ } } }, - "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/scope-manager": { + "node_modules/@typescript-eslint/scope-manager": { "version": "7.7.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.7.0.tgz", "integrity": "sha512-/8INDn0YLInbe9Wt7dK4cXLDYp0fNHP5xKLHvZl3mOT5X17rK/YShXaiNmorl+/U4VKCVIjJnx4Ri5b0y+HClw==", @@ -6419,116 +6419,14 @@ "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/types": { - "version": "7.7.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.7.0.tgz", - "integrity": "sha512-G01YPZ1Bd2hn+KPpIbrAhEWOn5lQBrjxkzHkWvP6NucMXFtfXoevK82hzQdpfuQYuhkvFDeQYbzXCjR1z9Z03w==", - "dev": true, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/typescript-estree": { - "version": "7.7.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.7.0.tgz", - "integrity": "sha512-8p71HQPE6CbxIBy2kWHqM1KGrC07pk6RJn40n0DSc6bMOBBREZxSDJ+BmRzc8B5OdaMh1ty3mkuWRg4sCFiDQQ==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "7.7.0", - "@typescript-eslint/visitor-keys": "7.7.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.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/parser/node_modules/@typescript-eslint/visitor-keys": { - "version": "7.7.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.7.0.tgz", - "integrity": "sha512-h0WHOj8MhdhY8YWkzIF30R379y0NqyOHExI9N9KCzvmu05EgG4FumeYa3ccfKUSphyWkWQE1ybVrgz/Pbam6YA==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "7.7.0", - "eslint-visitor-keys": "^3.4.3" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/parser/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/@typescript-eslint/parser/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/@typescript-eslint/scope-manager": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.6.0.tgz", - "integrity": "sha512-ngttyfExA5PsHSx0rdFgnADMYQi+Zkeiv4/ZxGYUWd0nLs63Ha0ksmp8VMxAIC0wtCFxMos7Lt3PszJssG/E6w==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "7.6.0", - "@typescript-eslint/visitor-keys": "7.6.0" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, "node_modules/@typescript-eslint/type-utils": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.6.0.tgz", - "integrity": "sha512-NxAfqAPNLG6LTmy7uZgpK8KcuiS2NZD/HlThPXQRGwz6u7MDBWRVliEEl1Gj6U7++kVJTpehkhZzCJLMK66Scw==", + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.7.0.tgz", + "integrity": "sha512-bOp3ejoRYrhAlnT/bozNQi3nio9tIgv3U5C0mVDdZC7cpcQEDZXvq8inrHYghLVwuNABRqrMW5tzAv88Vy77Sg==", "dev": true, "dependencies": { - "@typescript-eslint/typescript-estree": "7.6.0", - "@typescript-eslint/utils": "7.6.0", + "@typescript-eslint/typescript-estree": "7.7.0", + "@typescript-eslint/utils": "7.7.0", "debug": "^4.3.4", "ts-api-utils": "^1.3.0" }, @@ -6549,9 +6447,9 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.6.0.tgz", - "integrity": "sha512-h02rYQn8J+MureCvHVVzhl69/GAfQGPQZmOMjG1KfCl7o3HtMSlPaPUAPu6lLctXI5ySRGIYk94clD/AUMCUgQ==", + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.7.0.tgz", + "integrity": "sha512-G01YPZ1Bd2hn+KPpIbrAhEWOn5lQBrjxkzHkWvP6NucMXFtfXoevK82hzQdpfuQYuhkvFDeQYbzXCjR1z9Z03w==", "dev": true, "engines": { "node": "^18.18.0 || >=20.0.0" @@ -6562,13 +6460,13 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.6.0.tgz", - "integrity": "sha512-+7Y/GP9VuYibecrCQWSKgl3GvUM5cILRttpWtnAu8GNL9j11e4tbuGZmZjJ8ejnKYyBRb2ddGQ3rEFCq3QjMJw==", + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.7.0.tgz", + "integrity": "sha512-8p71HQPE6CbxIBy2kWHqM1KGrC07pk6RJn40n0DSc6bMOBBREZxSDJ+BmRzc8B5OdaMh1ty3mkuWRg4sCFiDQQ==", "dev": true, "dependencies": { - "@typescript-eslint/types": "7.6.0", - "@typescript-eslint/visitor-keys": "7.6.0", + "@typescript-eslint/types": "7.7.0", + "@typescript-eslint/visitor-keys": "7.7.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -6617,17 +6515,17 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.6.0.tgz", - "integrity": "sha512-x54gaSsRRI+Nwz59TXpCsr6harB98qjXYzsRxGqvA5Ue3kQH+FxS7FYU81g/omn22ML2pZJkisy6Q+ElK8pBCA==", + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.7.0.tgz", + "integrity": "sha512-LKGAXMPQs8U/zMRFXDZOzmMKgFv3COlxUQ+2NMPhbqgVm6R1w+nU1i4836Pmxu9jZAuIeyySNrN/6Rc657ggig==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", "@types/json-schema": "^7.0.15", "@types/semver": "^7.5.8", - "@typescript-eslint/scope-manager": "7.6.0", - "@typescript-eslint/types": "7.6.0", - "@typescript-eslint/typescript-estree": "7.6.0", + "@typescript-eslint/scope-manager": "7.7.0", + "@typescript-eslint/types": "7.7.0", + "@typescript-eslint/typescript-estree": "7.7.0", "semver": "^7.6.0" }, "engines": { @@ -6669,12 +6567,12 @@ } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.6.0.tgz", - "integrity": "sha512-4eLB7t+LlNUmXzfOu1VAIAdkjbu5xNSerURS9X/S5TUKWFRpXRQZbmtPqgKmYx8bj3J0irtQXSiWAOY82v+cgw==", + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.7.0.tgz", + "integrity": "sha512-h0WHOj8MhdhY8YWkzIF30R379y0NqyOHExI9N9KCzvmu05EgG4FumeYa3ccfKUSphyWkWQE1ybVrgz/Pbam6YA==", "dev": true, "dependencies": { - "@typescript-eslint/types": "7.6.0", + "@typescript-eslint/types": "7.7.0", "eslint-visitor-keys": "^3.4.3" }, "engines": { diff --git a/package.json b/package.json index 31274d7ddf..c2ed99a103 100644 --- a/package.json +++ b/package.json @@ -121,7 +121,7 @@ "@types/nodemailer": "^6.4.14", "@types/uuid": "^9.0.7", "@types/validator": "^13.11.9", - "@typescript-eslint/eslint-plugin": "^7.6.0", + "@typescript-eslint/eslint-plugin": "^7.7.0", "@typescript-eslint/parser": "^7.7.0", "@vitest/coverage-v8": "^1.5.0", "cls-bluebird": "^2.1.0", From 03fe1b8a08b470f05d0f26f8c9575c06307cd329 Mon Sep 17 00:00:00 2001 From: Pranshu Gupta Date: Mon, 22 Apr 2024 22:21:53 +0530 Subject: [PATCH 16/16] wrong org id (#2231) --- tests/resolvers/Mutation/createAdvertisement.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/resolvers/Mutation/createAdvertisement.spec.ts b/tests/resolvers/Mutation/createAdvertisement.spec.ts index eed8bd226d..907a80b701 100644 --- a/tests/resolvers/Mutation/createAdvertisement.spec.ts +++ b/tests/resolvers/Mutation/createAdvertisement.spec.ts @@ -64,7 +64,7 @@ describe("resolvers -> Mutation -> createAdvertisement", () => { const args: MutationCreateAdvertisementArgs = { input: { name: "myad", - organizationId: "sdfghj456789", + organizationId: new Types.ObjectId().toString(), type: "POPUP", mediaFile: "data:image/png;base64,bWVkaWEgY29udGVudA==", startDate: "2023-10-08T13:02:29.000Z",